mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-22 13:14:32 +02:00
parent
c8d24b6d49
commit
d85ba84a9a
@ -373,6 +373,10 @@ void ApiListener::ApiTimerHandler(void)
|
||||
Zone::Ptr my_zone = Zone::GetLocalZone();
|
||||
|
||||
BOOST_FOREACH(const Zone::Ptr& zone, DynamicType::GetObjectsByType<Zone>()) {
|
||||
/* don't connect to global zones */
|
||||
if (zone->GetGlobal())
|
||||
continue;
|
||||
|
||||
/* only connect to endpoints in a) the same zone b) our parent zone c) immediate child zones */
|
||||
if (my_zone != zone && my_zone != zone->GetParent() && zone != my_zone->GetParent()) {
|
||||
Log(LogDebug, "ApiListener")
|
||||
|
Loading…
x
Reference in New Issue
Block a user