p2p: fix deadlock banning while updating peer lists

pull/354/head
moneromooo 3 years ago committed by wowario
parent 45a462eb91
commit 31dc71afaf
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -2111,6 +2111,7 @@ namespace nodetool
LOG_DEBUG_CC(context, "REMOTE PEERLIST: remote peerlist size=" << peerlist_.size());
LOG_TRACE_CC(context, "REMOTE PEERLIST: " << ENDL << print_peerlist_to_string(peerlist_));
CRITICAL_REGION_LOCAL(m_blocked_hosts_lock);
return m_network_zones.at(context.m_remote_address.get_zone()).m_peerlist.merge_peerlist(peerlist_, [this](const peerlist_entry &pe) {
return !is_addr_recently_failed(pe.adr) && is_remote_host_allowed(pe.adr);
});

Loading…
Cancel
Save