diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-16 10:48:04 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-05 12:00:45 +0000 |
commit | ceb72be329f8519fb68dbfb17b697037deeb3222 (patch) | |
tree | 65caba53c8ac6a9238eded55b6347c2e4fb0a43b /src/p2p/net_node.inl | |
parent | Merge pull request #5231 (diff) | |
download | monero-ceb72be329f8519fb68dbfb17b697037deeb3222.tar.xz |
p2p: avoid busy loop when we have nothing to connect to
Diffstat (limited to '')
-rw-r--r-- | src/p2p/net_node.inl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index e3d804086..341598e80 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -1398,7 +1398,15 @@ namespace nodetool } if(zone.second.m_net_server.is_stop_signal_sent()) 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; } } |