ddanielr commented on issue #3159: URL: https://github.com/apache/accumulo/issues/3159#issuecomment-1378823219
Focusing on 1.10.2, the problem seems to come from the Retry logic used. https://github.com/apache/accumulo/blob/1.10/server/master/src/main/java/org/apache/accumulo/master/Master.java#L1516 If `tserverRetry` has retries available, then it will always return true. `tserverRetry` was created with infinite retries, so this logic will always return true and the timeout is never reached. https://github.com/apache/accumulo/blob/1.10/server/master/src/main/java/org/apache/accumulo/master/Master.java#L1507 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
