Archiviert
1
0

Merge pull request 'Wait short befor testarena start if bauserver previously running' (#89) from fixTestarenaNonStarting into master

Reviewed-by: YoyoNow <jwsteam@nidido.de>
Dieser Commit ist enthalten in:
Lixfel 2020-05-21 21:19:03 +02:00
Commit bf3626c4b0

Datei anzeigen

@ -210,6 +210,11 @@ public class BauCommand {
return;
}
subserver.stop();
try {
Thread.sleep(200); // Wait until possible testarena-World has been deleted
} catch (InterruptedException e) {
throw new SecurityException("Subserver stop interrupted", e);
}
break;
}
}