mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
p2p: avoid busy loop when we have nothing to connect to
This commit is contained in:
parent
39d7d3113b
commit
ceb72be329
1 changed files with 9 additions and 1 deletions
|
@ -1398,7 +1398,15 @@ namespace nodetool
|
||||||
}
|
}
|
||||||
if(zone.second.m_net_server.is_stop_signal_sent())
|
if(zone.second.m_net_server.is_stop_signal_sent())
|
||||||
return false;
|
return false;
|
||||||
conn_count = get_outgoing_connections_count(zone.second);
|
size_t new_conn_count = get_outgoing_connections_count(zone.second);
|
||||||
|
if (new_conn_count <= conn_count)
|
||||||
|
{
|
||||||
|
// we did not make any connection, sleep a bit to avoid a busy loop in case we don't have
|
||||||
|
// any peers to try, then break so we will try seeds to get more peers
|
||||||
|
boost::this_thread::sleep_for(boost::chrono::seconds(1));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
conn_count = new_conn_count;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue