Skip to content

Commit

Permalink
HBASE-26807 Addendum: adhere to maxAttempts in RawAsyncTableImpl.batch (
Browse files Browse the repository at this point in the history
#4370)

Signed-off-by: Nick Dimiduk <ndimiduk@apache.org>
  • Loading branch information
bbeaudreault authored Apr 25, 2022
1 parent c9d833e commit 2fe5a4f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@ private <T> List<CompletableFuture<T>> batch(List<? extends Row> actions, long r
.operationTimeout(operationTimeoutNs, TimeUnit.NANOSECONDS)
.rpcTimeout(rpcTimeoutNs, TimeUnit.NANOSECONDS).pause(pauseNs, TimeUnit.NANOSECONDS)
.pauseForServerOverloaded(pauseNsForServerOverloaded, TimeUnit.NANOSECONDS)
.maxAttempts(maxAttempts)
.startLogErrorsCnt(startLogErrorsCnt).call();
}

Expand Down

0 comments on commit 2fe5a4f

Please sign in to comment.