mirror of https://github.com/Icinga/icinga2.git
Avoid "type" key in dicts being part of object state attrs
not to confuse the state file deserializator with e.g. `"type":32` on startup. That would unexpectedly restore null (not `{"type":32}`) as there's no type "32". refs #8186
This commit is contained in:
parent
338d0aaa8c
commit
eb71fb7529
|
@ -74,7 +74,7 @@ void Checkable::SendNotifications(NotificationType type, const CheckResult::Ptr&
|
|||
<< "Notification '" << notification->GetName() << "': there are some stashed notifications. Stashing notification to preserve order.";
|
||||
|
||||
stashedNotifications->Add(new Dictionary({
|
||||
{"type", type},
|
||||
{"notification_type", type},
|
||||
{"cr", cr},
|
||||
{"force", force},
|
||||
{"reminder", false},
|
||||
|
@ -99,7 +99,7 @@ void Checkable::SendNotifications(NotificationType type, const CheckResult::Ptr&
|
|||
<< "Notification '" << notification->GetName() << "': object authority hasn't been updated, yet. Stashing notification.";
|
||||
|
||||
notification->GetStashedNotifications()->Add(new Dictionary({
|
||||
{"type", type},
|
||||
{"notification_type", type},
|
||||
{"cr", cr},
|
||||
{"force", force},
|
||||
{"reminder", false},
|
||||
|
|
|
@ -186,7 +186,7 @@ void NotificationComponent::NotificationTimerHandler()
|
|||
<< "Attempting to send stashed notification '" << notificationName << "'.";
|
||||
|
||||
notification->BeginExecuteNotification(
|
||||
(NotificationType)(int)unstashedNotification->Get("type"),
|
||||
(NotificationType)(int)unstashedNotification->Get("notification_type"),
|
||||
(CheckResult::Ptr)unstashedNotification->Get("cr"),
|
||||
(bool)unstashedNotification->Get("force"),
|
||||
(bool)unstashedNotification->Get("reminder"),
|
||||
|
|
Loading…
Reference in New Issue