this should make waiting more responsive

This commit is contained in:
szymon 2020-08-07 22:29:21 +02:00
parent c8b53a4ce2
commit 7920152c40

View File

@ -100,7 +100,7 @@ public class RestoreBackupRunnable implements Runnable {
private void awaitServerShutdown() {
while(((LivingServer)server).isAlive()) {
try {
Thread.sleep(1000);
Thread.sleep(100);
} catch (InterruptedException e) {
Statics.LOGGER.error("Exception occurred!", e);
}