Only include a scheduled rule if it is strictly before the end time

The exact moment of the end time is the end of the schedule. We do not want to include a rule when filter_configure_sync wakes up at 00:15:00 etc and is on a not-slow system that processes this code during the interval 00:15:00 to 00:15:01. This should help intermittent issues with schedules not finishing at the appropriate 15-minute boundary. Might help or fix #3558
This commit is contained in:
Phil Davis 2014-06-19 10:32:05 +05:45 committed by jim-p
parent e792ac3632
commit efac3a1346
1 changed files with 1 additions and 1 deletions

View File

@ -3262,7 +3262,7 @@ function filter_tdr_hour($schedule) {
$now = strtotime("now");
if($g['debug'])
log_error("[TDR DEBUG] S: $starting_time E: $ending_time N: $now");
if($now >= $starting_time and $now <= $ending_time)
if($now >= $starting_time and $now < $ending_time)
return true;
return false;
}