-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2424 from MushroomObserver/solid-queue-0.9
Bump `solid_queue` to 1.0
- Loading branch information
Showing
3 changed files
with
17 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Solid Queue supports defining recurring tasks that run at specific times in | ||
# the future, on a regular basis like cron jobs. These are managed by the | ||
# scheduler process and are defined in their own configuration file. | ||
# https://github.com/rails/solid_queue/tree/main#recurring-tasks | ||
|
||
# production: | ||
# a_periodic_job: | ||
# class: MyJob | ||
# args: [ 42, { status: "custom_status" } ] | ||
# schedule: every second | ||
# a_cleanup_task: | ||
# command: "DeletedStuff.clear_all" | ||
# schedule: every day at 9am |