diff --git hbase-client/src/main/java/org/apache/hadoop/hbase/client/RpcRetryingCaller.java hbase-client/src/main/java/org/apache/hadoop/hbase/client/RpcRetryingCaller.java index f6ad76a..e78616c 100644 --- hbase-client/src/main/java/org/apache/hadoop/hbase/client/RpcRetryingCaller.java +++ hbase-client/src/main/java/org/apache/hadoop/hbase/client/RpcRetryingCaller.java @@ -175,7 +175,6 @@ public class RpcRetryingCaller { this.globalStartTime = EnvironmentEdgeManager.currentTimeMillis(); this.callTimeout = callTimeout; try { - beforeCall(); callable.prepare(false); return callable.call(); } catch (Throwable t) { @@ -187,8 +186,6 @@ public class RpcRetryingCaller { } else { throw new RuntimeException(t2); } - } finally { - afterCall(); } }