mirror of https://github.com/Icinga/icinga2.git
parent
c8d24b6d49
commit
d85ba84a9a
|
@ -373,6 +373,10 @@ void ApiListener::ApiTimerHandler(void)
|
||||||
Zone::Ptr my_zone = Zone::GetLocalZone();
|
Zone::Ptr my_zone = Zone::GetLocalZone();
|
||||||
|
|
||||||
BOOST_FOREACH(const Zone::Ptr& zone, DynamicType::GetObjectsByType<Zone>()) {
|
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 */
|
/* 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()) {
|
if (my_zone != zone && my_zone != zone->GetParent() && zone != my_zone->GetParent()) {
|
||||||
Log(LogDebug, "ApiListener")
|
Log(LogDebug, "ApiListener")
|
||||||
|
|
Loading…
Reference in New Issue