net_node: fix a hang on exit
One loop was not paying attention to the stop signal, and could end up looping forever
This commit is contained in:
parent
40880d7cb8
commit
17ff6f2114
1 changed files with 1 additions and 1 deletions
|
@ -570,7 +570,7 @@ namespace nodetool
|
|||
mPeersLoggerThread.reset(new std::thread([&]()
|
||||
{
|
||||
_note("Thread monitor number of peers - start");
|
||||
while (!is_closing)
|
||||
while (!is_closing && !m_net_server.is_stop_signal_sent())
|
||||
{ // main loop of thread
|
||||
//number_of_peers = m_net_server.get_config_object().get_connections_count();
|
||||
unsigned int number_of_peers = 0;
|
||||
|
|
Loading…
Reference in a new issue