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
If you then start the scheduler rake task, this job will stop running until such time as the rake task is exited. It then resumes its normal schedule.
Any delayed jobs added via Resque.enqueue_at will not run until the rake task is started.
Not sure if this is related or a separate issue but if you want to run a regular delayed job, this will only run if the scheduler rake task is already started. If you schedule the job (and it does appear under the Resque Schedule tab) and then start the rake task, the jobs will sit in the schedule waiting to be queued even if the time they should have run is passed (they can be enqueued manually). Once these "stale" jobs are removed or queued, any delayed jobs created after the rake task was started will queue as per normal.
The text was updated successfully, but these errors were encountered:
If you set resque-scheduler to be dynamic and create a job it works perfectly well without having to run the scheduler rake task, e.g.
If you then start the scheduler rake task, this job will stop running until such time as the rake task is exited. It then resumes its normal schedule.
Any delayed jobs added via
Resque.enqueue_at
will not run until the rake task is started.Not sure if this is related or a separate issue but if you want to run a regular delayed job, this will only run if the scheduler rake task is already started. If you schedule the job (and it does appear under the Resque Schedule tab) and then start the rake task, the jobs will sit in the schedule waiting to be queued even if the time they should have run is passed (they can be enqueued manually). Once these "stale" jobs are removed or queued, any delayed jobs created after the rake task was started will queue as per normal.
The text was updated successfully, but these errors were encountered: