HBASE-13066 Fix typo in AsyncRpcChannel

Signed-off-by: stack <stack@apache.org>
This commit is contained in:
zhangduo 2015-02-19 00:27:24 +08:00 committed by stack
parent cecc475d2f
commit 20bc74dff0
1 changed files with 1 additions and 1 deletions

View File

@ -607,7 +607,7 @@ public class AsyncRpcChannel {
}
for (AsyncCall call : toCleanup) {
call.setFailed(new CallTimeoutException("Call id=" + call.id + ", waitTime="
+ (currentTime - call.getRpcTimeout()) + ", rpcTimeout=" + call.getRpcTimeout()));
+ (currentTime - call.getStartTime()) + ", rpcTimeout=" + call.getRpcTimeout()));
}
}