Skip to content

Commit

Permalink
Add examples of setting config.good_job.queues (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmargolis authored Aug 24, 2021
1 parent 329dfad commit 9517669
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ config.good_job.poll_interval = 30 # seconds
config.good_job.shutdown_timeout = 25 # seconds
config.good_job.enable_cron = true
config.good_job.cron = { example: { cron: '0 * * * *', class: 'ExampleJob' } }
config.good_job.queues = '*'
# ...or all at once.
config.good_job = {
Expand All @@ -233,6 +234,7 @@ config.good_job = {
class: 'ExampleJob'
},
},
queues: '*',
}
```

Expand Down

0 comments on commit 9517669

Please sign in to comment.