add to the keep alive thread name the version number, so it will be simpler to know from stack traces the es version

This commit is contained in:
Shay Banon 2012-08-02 10:50:28 +03:00
parent e7d0217b11
commit e26a56e025

View File

@ -224,7 +224,7 @@ public class Bootstrap {
// bail out
}
}
}, "elasticsearch[keepAlive]");
}, "elasticsearch[keepAlive/" + Version.CURRENT + "]");
keepAliveThread.setDaemon(false);
keepAliveThread.start();
} catch (Throwable e) {