mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-25 14:44:32 +02:00
Merge pull request #8878 from Icinga/bugfix/fixed-dt-end-notify-211
Checkable::NotifyDowntimeEnd(): don't send Downtime end notification unless triggered
This commit is contained in:
commit
7c4996d1c2
@ -194,8 +194,8 @@ void Checkable::NotifyDowntimeInternal(const Downtime::Ptr& downtime)
|
|||||||
|
|
||||||
void Checkable::NotifyDowntimeEnd(const Downtime::Ptr& downtime)
|
void Checkable::NotifyDowntimeEnd(const Downtime::Ptr& downtime)
|
||||||
{
|
{
|
||||||
/* don't send notifications for flexible downtimes which never triggered */
|
/* don't send notifications for downtimes which never triggered */
|
||||||
if (!downtime->GetFixed() && !downtime->IsTriggered())
|
if (!downtime->IsTriggered())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Checkable::Ptr checkable = downtime->GetCheckable();
|
Checkable::Ptr checkable = downtime->GetCheckable();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user