Increased cron check frequency to support seconds granularity

This commit is contained in:
Fabio Manganiello 2019-09-27 14:51:53 +02:00
parent bcd3bf7911
commit 87d14134f8
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class CronScheduler(Thread):
if job.should_run():
job.start()
time.sleep(60)
time.sleep(0.5)
# vim:sw=4:ts=4:et: