Load checkable groups after their members

refs #8116
This commit is contained in:
Alexander A. Klimov 2020-07-17 14:43:15 +02:00
parent c253e7eb6e
commit bfd2ceacea
2 changed files with 4 additions and 0 deletions

View File

@ -9,6 +9,8 @@ namespace icinga
class HostGroup : CustomVarObject class HostGroup : CustomVarObject
{ {
load_after Host;
[config] String display_name { [config] String display_name {
get {{{ get {{{
String displayName = m_DisplayName.load(); String displayName = m_DisplayName.load();

View File

@ -9,6 +9,8 @@ namespace icinga
class ServiceGroup : CustomVarObject class ServiceGroup : CustomVarObject
{ {
load_after Service;
[config] String display_name { [config] String display_name {
get {{{ get {{{
String displayName = m_DisplayName.load(); String displayName = m_DisplayName.load();