Repository: hbase
Updated Branches:
  refs/heads/branch-1.3 53dd0aeff -> 37e080d70


HBASE-15880 RpcClientImpl#tracedWriteRequest incorrectly closes HTrace span


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/37e080d7
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/37e080d7
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/37e080d7

Branch: refs/heads/branch-1.3
Commit: 37e080d7018c9f5fdddb902f9898c464bbe07028
Parents: 53dd0ae
Author: Mikhail Antonov <anto...@apache.org>
Authored: Mon May 23 12:51:44 2016 -0700
Committer: Mikhail Antonov <anto...@apache.org>
Committed: Mon May 23 12:51:44 2016 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/37e080d7/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java
----------------------------------------------------------------------
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java
index ef500d6..1fcf333 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java
@@ -868,7 +868,7 @@ public class RpcClientImpl extends AbstractRpcClient {
     }
 
     protected void tracedWriteRequest(Call call, int priority, Span span) 
throws IOException {
-      TraceScope ts = Trace.continueSpan(span);
+      TraceScope ts = Trace.startSpan("RpcClientImpl.tracedWriteRequest", 
span);
       try {
         writeRequest(call, priority, span);
       } finally {

Reply via email to