Merge pull request #10648

f93346a Fixed dangling iterator in is_remote_host_allowed (SChernykh)
This commit is contained in:
tobtoht
2026-05-30 20:16:54 +00:00
+1 -1
View File
@@ -202,8 +202,8 @@ namespace nodetool
{
if (now >= it->second)
{
it = m_blocked_subnets.erase(it);
MCLOG_CYAN(el::Level::Info, "global", "Subnet " << it->first.host_str() << " unblocked.");
it = m_blocked_subnets.erase(it);
continue;
}
if (it->first.matches(ipv4_address))