-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add per-environment keys in sample recurring configurations
As suggested in #358
- Loading branch information
Showing
2 changed files
with
18 additions
and
16 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
19 changes: 10 additions & 9 deletions
19
lib/generators/solid_queue/install/templates/config/recurring.yml
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
# periodic_cleanup: | ||
# class: CleanSoftDeletedRecordsJob | ||
# queue: background | ||
# args: [ 1000, { batch_size: 500 } ] | ||
# schedule: every hour | ||
# periodic_command: | ||
# command: "SoftDeletedRecord.due.delete_all" | ||
# priority: 2 | ||
# schedule: at 5am every day | ||
# production: | ||
# periodic_cleanup: | ||
# class: CleanSoftDeletedRecordsJob | ||
# queue: background | ||
# args: [ 1000, { batch_size: 500 } ] | ||
# schedule: every hour | ||
# periodic_command: | ||
# command: "SoftDeletedRecord.due.delete_all" | ||
# priority: 2 | ||
# schedule: at 5am every day |