HBASE-15880 RpcClientImpl#tracedWriteRequest incorrectly closes HTrace span
This commit is contained in:
parent
c03ea895c4
commit
1c30ae68ec
|
@ -875,7 +875,7 @@ public class RpcClientImpl extends AbstractRpcClient {
|
|||
}
|
||||
|
||||
protected void tracedWriteRequest(Call call, int priority, Span span) throws IOException {
|
||||
try (TraceScope ignored = Trace.continueSpan(span)) {
|
||||
try (TraceScope ignored = Trace.startSpan("RpcClientImpl.tracedWriteRequest", span)) {
|
||||
writeRequest(call, priority, span);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue