HBASE-26807 Addendum: adhere to maxAttempts in RawAsyncTableImpl.batch (#4370)

Signed-off-by: Nick Dimiduk <ndimiduk@apache.org>
This commit is contained in:
Bryan Beaudreault 2022-04-25 13:25:05 -04:00 committed by GitHub
parent c9d833ed5e
commit 2fe5a4fa4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -743,6 +743,7 @@ class RawAsyncTableImpl implements AsyncTable<AdvancedScanResultConsumer> {
.operationTimeout(operationTimeoutNs, TimeUnit.NANOSECONDS)
.rpcTimeout(rpcTimeoutNs, TimeUnit.NANOSECONDS).pause(pauseNs, TimeUnit.NANOSECONDS)
.pauseForServerOverloaded(pauseNsForServerOverloaded, TimeUnit.NANOSECONDS)
.maxAttempts(maxAttempts)
.startLogErrorsCnt(startLogErrorsCnt).call();
}