You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
job = scheduler.cron(
"1 12 * * *", # A cron string (e.g. "0 0 * * 0")
func=tasks.myfunc, # Function to be queued
args=[], # Arguments passed into function when executed
kwargs={}, # Keyword arguments passed into function when executed
repeat=None, # Repeat this number of times (None means repeat forever)
queue_name='my_default', # In which queue the job should be put in
meta={}, # Arbitrary pickleable data on the job itself
use_local_timezone=True # Interpret hours in the local timezone
)
With rq-scheduler 0.11.0, which supposedly fixed #247, the job is scheduled twice: once at 12:01 local time as expected, and another one at 14:01 local time (CEST, currently UTC+2, so it's 12:01 UTC time).
The text was updated successfully, but these errors were encountered:
I have the following scheduled job:
With rq-scheduler 0.11.0, which supposedly fixed #247, the job is scheduled twice: once at 12:01 local time as expected, and another one at 14:01 local time (CEST, currently UTC+2, so it's 12:01 UTC time).
The text was updated successfully, but these errors were encountered: