mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-31 03:03:52 +01:00 
			
		
		
		
	Consult Checkable#state_before_suppression only if there's a suppression
It's only set along with adding NotificationProblem or NotificationRecovery to Checkable#suppressed_notifications and never reset. Also its default, ServiceOK, is an actual state. Not being aware of these facts confuses Checkable#NotificationReasonApplies() which is a condition for cleaning Notification#suppressed_notifications in FireSuppressedNotifications(). I.e. suppressed notifications can get lost.
This commit is contained in:
		
							parent
							
								
									be50050d2b
								
							
						
					
					
						commit
						cafbe5e670
					
				| @ -262,16 +262,20 @@ void Checkable::FireSuppressedNotificationsTimer(const Timer * const&) | ||||
|  */ | ||||
| bool Checkable::NotificationReasonApplies(NotificationType type) | ||||
| { | ||||
| 	const auto stateNotifications (NotificationRecovery | NotificationProblem); | ||||
| 
 | ||||
| 	switch (type) { | ||||
| 		case NotificationProblem: | ||||
| 			{ | ||||
| 				auto cr (GetLastCheckResult()); | ||||
| 				return cr && !IsStateOK(cr->GetState()) && cr->GetState() != GetStateBeforeSuppression(); | ||||
| 				return cr && !IsStateOK(cr->GetState()) | ||||
| 					&& !(cr->GetState() == GetStateBeforeSuppression() && GetSuppressedNotifications() & stateNotifications); | ||||
| 			} | ||||
| 		case NotificationRecovery: | ||||
| 			{ | ||||
| 				auto cr (GetLastCheckResult()); | ||||
| 				return cr && IsStateOK(cr->GetState()) && cr->GetState() != GetStateBeforeSuppression(); | ||||
| 				return cr && IsStateOK(cr->GetState()) | ||||
| 					&& !(cr->GetState() == GetStateBeforeSuppression() && GetSuppressedNotifications() & stateNotifications); | ||||
| 			} | ||||
| 		case NotificationFlappingStart: | ||||
| 			return IsFlapping(); | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user