config/schedule.yml
my_first_job: cron: "*/5 * * * *" class: "HardWorker" queue: hard_worker
second_job: cron: "*/30 * * * *" # execute at every 30 minutes class: "HardWorker" queue: hard_worker_long args: hard: "stuff"
my_first_job: cron: "*/5 * * * *" class: "HardWorker" queue: hard_worker
second_job: cron: "*/30 * * * *" # execute at every 30 minutes class: "HardWorker" queue: hard_worker_long args: hard: "stuff"
Copyright © 2021 Jogjafile Inc.
Have you added a sidekiq initializer that loads the file if it exists. You can use the
YAML.loadExample