We can do this by defining a recurring task in the config/solid_queue.yml file
Then
default: &default
dispatchers:
- polling_interval: 1
batch_size: 500
recurring_tasks:
periodic_litestream_backup_verfication_job:
class: Litestream::VerificationJob
args: []
schedule: every day at 1am EST
Should be changed as
Mentions
We can do this by defining a recurring task in the config/schedule.yml file
Then
periodic_litestream_backup_verfication_job:
class: Litestream::VerificationJob
args: []
schedule: every day at 1am EST
See: https://github.com/rails/solid_queue/pull/338
From my understanding it should change from this at workshop/07-adding-solid-queue.md
Right now
Mentions
Then
Should be changed as
Mentions
Then