dlmarion commented on code in PR #5145: URL: https://github.com/apache/accumulo/pull/5145#discussion_r1873735996
########## server/base/src/main/java/org/apache/accumulo/server/AbstractServer.java: ########## @@ -44,6 +48,8 @@ public abstract class AbstractServer implements AutoCloseable, MetricsProducer, private final ProcessMetrics processMetrics; protected final long idleReportingPeriodNanos; private volatile long idlePeriodStartNanos = 0L; + private volatile Thread serverThread; + private volatile Thread verificationThread; Review Comment: I'm assuming so, but honestly not 100% sure. `serverThread.isAlive` is being called from the `verificationThread` and `verificationThread` is checked for a null reference in the main thread when stopping. -- 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]
