kevinrr888 commented on code in PR #5576: URL: https://github.com/apache/accumulo/pull/5576#discussion_r2105303858
########## core/src/main/java/org/apache/accumulo/core/util/threads/Threads.java: ########## @@ -55,22 +55,26 @@ public static Runnable createNamedRunnable(String name, Runnable r) { return new NamedRunnable(name, r); } - public static Thread createThread(String name, Runnable r) { - return createThread(name, OptionalInt.empty(), r, UEH); + public static Thread createNonCriticalThread(String name, Runnable r) { Review Comment: My goal was to force callers to always make a conscious decision about which method to use. -- 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: notifications-unsubscr...@accumulo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org