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
parent 47c62a9165
commit 4fb47b4800
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();
}