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,7 +342,10 @@ void Service::RemoveExpiredDowntimes(void)
downtimes->Remove(id);
}
Touch("downtimes");
{
ObjectLock olock(this);
Touch("downtimes");
}
}
}