Allow default schedule items to be skipped by setting to 'null'

This commit is contained in:
Oliver Gorwits
2017-12-21 20:03:10 +00:00
parent 7f8e3edfff
commit 9c60727c9f
5 changed files with 34 additions and 2 deletions

View File

@@ -20,7 +20,8 @@ sub worker_begin {
debug "entering Scheduler ($wid) worker_begin()";
foreach my $action (keys %{ setting('schedule') }) {
my $config = setting('schedule')->{$action};
my $config = setting('schedule')->{$action}
or next;
# accept either single crontab format, or individual time fields
$config->{when} = Algorithm::Cron->new(
@@ -59,7 +60,8 @@ sub worker_body {
# if any job is due, add it to the queue
foreach my $action (keys %{ setting('schedule') }) {
my $sched = setting('schedule')->{$action};
my $sched = setting('schedule')->{$action}
or next;
# next occurence of job must be in this minute's window
debug sprintf "sched ($wid): $action: win_start: %s, win_end: %s, next: %s",