IcingaObject: work around a resolver issue

This commit is contained in:
Thomas Gelf 2017-07-04 07:17:51 +02:00
parent 6aab867682
commit 126dd29ecc
1 changed files with 6 additions and 0 deletions

View File

@ -1125,6 +1125,12 @@ abstract class IcingaObject extends DbObject implements IcingaConfigRenderer
continue;
}
if (! property_exists($origins, $key)) {
// TODO: Introduced with group membership resolver or
// choices - this should not be required. Check this!
continue;
}
// $vals[$name]->$key = $value;
$vals['_MERGED_']->$key = $value;
$vals['_INHERITED_']->$key = $value;