mirror of
https://github.com/Icinga/icinga2.git
synced 2026-05-04 17:10:26 -04:00
Bugfix: assert in Timer::ProcessTimers.
This commit is contained in:
parent
09309b3899
commit
7526ee3a9e
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ double Timer::ProcessTimers(void)
|
|||
|
||||
double next = now + timer->GetInterval();
|
||||
|
||||
if (timer->m_Next < now || next < timer->m_Next)
|
||||
if (timer->m_Next <= now || next < timer->m_Next)
|
||||
timer->Reschedule(next);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue