This is an automated email from the ASF dual-hosted git repository.

apurtell pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new e7b67a19b30 HBASE-27393 Frequent and not useful "Final timeLimitDelta" 
log lines (#4802)
e7b67a19b30 is described below

commit e7b67a19b30e5f4c1f386c9ba91d783d0bc6e579
Author: Andrew Purtell <[email protected]>
AuthorDate: Mon Sep 26 17:54:49 2022 -0700

    HBASE-27393 Frequent and not useful "Final timeLimitDelta" log lines (#4802)
    
    Signed-off-by: Viraj Jasani <[email protected]>
---
 .../main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java    | 1 -
 1 file changed, 1 deletion(-)

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;
       }
     }

Reply via email to