HBASE-27393 Frequent and not useful "Final timeLimitDelta" log lines (#4802)

Signed-off-by: Viraj Jasani <virajjasani@apache.org>
This commit is contained in:
Andrew Purtell 2022-09-26 17:54:49 -07:00 committed by GitHub
parent e25b2a7cd0
commit e7b67a19b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3233,7 +3233,6 @@ public class RSRpcServices implements HBaseRPCErrorHandler, AdminService.Blockin
// the time limit to be less than the allowable minimum (could cause an // the time limit to be less than the allowable minimum (could cause an
// immediate timeout before scanning any data). // immediate timeout before scanning any data).
timeLimitDelta = Math.max(timeLimitDelta / 2, minimumScanTimeLimitDelta); timeLimitDelta = Math.max(timeLimitDelta / 2, minimumScanTimeLimitDelta);
LOG.info("Final timeLimitDelta of {}", timeLimitDelta);
return now + timeLimitDelta; return now + timeLimitDelta;
} }
} }