keith-turner commented on code in PR #5576:
URL: https://github.com/apache/accumulo/pull/5576#discussion_r2109674310


##########
core/src/main/java/org/apache/accumulo/core/clientImpl/ThriftTransportPool.java:
##########
@@ -73,7 +73,8 @@ public class ThriftTransportPool {
 
   private ThriftTransportPool(LongSupplier maxAgeMillis) {
     this.maxAgeMillis = maxAgeMillis;
-    this.checkThread = Threads.createThread("Thrift Connection Pool Checker", 
() -> {
+    // TODO KEVIN RATHBUN all this does is perform some resource cleanup, so 
may not be critical.
+    this.checkThread = Threads.createNonCriticalThread("Thrift Connection Pool 
Checker", () -> {

Review Comment:
   Could leave this thread as non-critical for now and open a follow in issue 
about it.  This PR looks really good other than this client side thread.



-- 
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]

Reply via email to