Stop the ConsoleReaderThread explicitly, instead of letting ThreadManager do it

this hack dates back to the days when the console reader would get stuck on shutdown on some platforms.
This commit is contained in:
Dylan K. Taylor 2021-09-10 13:48:01 +01:00
parent 334bf1277d
commit 1cc57afd25
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -1358,7 +1358,7 @@ class Server{
if(isset($this->console)){
$this->getLogger()->debug("Closing console");
$this->console->shutdown();
$this->console->notify();
$this->console->quit();
}
if(isset($this->network)){