dlmarion commented on a change in pull request #1818:
URL: https://github.com/apache/accumulo/pull/1818#discussion_r556689527
##########
File path: core/src/main/java/org/apache/accumulo/core/util/Halt.java
##########
@@ -49,15 +49,16 @@ public void run() {
}
public static void halt(final int status, Runnable runnable) {
+
try {
// give ourselves a little time to try and do something
- new Daemon() {
+ Threads.createThread("Halt Thread", new Runnable() {
@Override
public void run() {
sleepUninterruptibly(100, TimeUnit.MILLISECONDS);
Runtime.getRuntime().halt(status);
}
- }.start();
+ }).start();
Review comment:
Resolved in latest commit
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]