mirror of https://github.com/Icinga/icinga2.git
Fix another deadlock.
This commit is contained in:
parent
4371649064
commit
cf4397873c
|
@ -312,10 +312,12 @@ void Service::SetAcknowledgementExpiry(double timestamp)
|
|||
*/
|
||||
void Service::AcknowledgeProblem(AcknowledgementType type, double expiry)
|
||||
{
|
||||
ObjectLock olock(this);
|
||||
{
|
||||
ObjectLock olock(this);
|
||||
|
||||
SetAcknowledgement(type);
|
||||
SetAcknowledgementExpiry(expiry);
|
||||
SetAcknowledgement(type);
|
||||
SetAcknowledgementExpiry(expiry);
|
||||
}
|
||||
|
||||
RequestNotifications(NotificationAcknowledgement, GetLastCheckResult());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue