mirror of https://github.com/Icinga/icinga2.git
parent
0b41af7639
commit
5e9ce84c17
|
@ -327,6 +327,9 @@ void ServiceDbObject::AddComments(const Service::Ptr& service)
|
|||
|
||||
ObjectLock olock(comments);
|
||||
|
||||
if (comments->GetLength() > 0)
|
||||
RemoveComments(service);
|
||||
|
||||
BOOST_FOREACH(const Dictionary::Pair& kv, comments) {
|
||||
AddComment(service, kv.second);
|
||||
}
|
||||
|
@ -489,6 +492,9 @@ void ServiceDbObject::AddDowntimes(const Service::Ptr& service)
|
|||
|
||||
ObjectLock olock(downtimes);
|
||||
|
||||
if (downtimes->GetLength() > 0)
|
||||
RemoveDowntimes(service);
|
||||
|
||||
BOOST_FOREACH(const Dictionary::Pair& kv, downtimes) {
|
||||
AddDowntime(service, kv.second);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue