dlmarion commented on code in PR #3985:
URL: https://github.com/apache/accumulo/pull/3985#discussion_r1407772233
##########
core/src/main/java/org/apache/accumulo/core/util/Wait.java:
##########
@@ -51,6 +56,14 @@ public static int
getTimeoutFactor(ToIntFunction<NumberFormatException> onError)
}
+ public static void sleep(long millis) {
+ try {
+ Thread.sleep(millis);
+ } catch (InterruptedException e) {
+ log.error("{}", e.getMessage(), e);
Review Comment:
Should `Thread.currentThread().interrupt();` go here?
--
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]