Bugfix for removing expired downtimes.

This commit is contained in:
Gunnar Beutner 2013-06-19 14:28:46 +02:00
parent 1d7428b237
commit 709e8c925e
1 changed files with 4 additions and 1 deletions

View File

@ -342,9 +342,12 @@ void Service::RemoveExpiredDowntimes(void)
downtimes->Remove(id);
}
{
ObjectLock olock(this);
Touch("downtimes");
}
}
}
void Service::DowntimesExpireTimerHandler(void)
{