diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java index 00ce42636f0..37e0135f080 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java @@ -3233,7 +3233,6 @@ public class RSRpcServices implements HBaseRPCErrorHandler, AdminService.Blockin // the time limit to be less than the allowable minimum (could cause an // immediate timeout before scanning any data). timeLimitDelta = Math.max(timeLimitDelta / 2, minimumScanTimeLimitDelta); - LOG.info("Final timeLimitDelta of {}", timeLimitDelta); return now + timeLimitDelta; } }