Skip to content

Commit 952ae2d

Browse files
lib/go/thrift: Make the processor return success only if the response was successfully sent back
1 parent 7812441 commit 952ae2d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/go/thrift/processor.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -186,17 +186,18 @@ func (p *TBinaryProcessorFunction) Process(ctx Context, seqID int32, in, out TPr
186186
tid = INTERNAL_TIME_OUT_ERROR
187187
}
188188

189-
p.writeException(
189+
rerr := p.writeException(
190190
out,
191191
seqID,
192192
int32(tid),
193193
fmt.Sprintf("Internal error processing : %s: %s", p.fname, err.Error()),
194194
)
195195

196-
return true, err
196+
return rerr == nil, err
197197
}
198198

199-
return true, p.writeReply(out, seqID, res)
199+
rerr := p.writeReply(out, seqID, res)
200+
return rerr == nil, rerr
200201
}
201202

202203
type TUnaryHandler interface {

0 commit comments

Comments
 (0)