mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Closes mperham/sidekiq#1419: Updating changelog with additional information about queue syntax
This commit is contained in:
parent
6cd4e6a96e
commit
8f7c41bb3e
1 changed files with 6 additions and 1 deletions
|
@ -3,7 +3,12 @@
|
|||
|
||||
- Fix race condition in bulk requeue during shutdown [#1406]
|
||||
- Fix bug where strictly prioritized queues might be processed out of
|
||||
order [#1408]
|
||||
order [#1408]. A side effect of this change is that it breaks a queue
|
||||
declaration syntax that worked, although only because of a bug—it was
|
||||
never intended to work and never supported. If you were declaring your
|
||||
queues as a comma-separated list, e.g. `sidekiq -q critical,default,low`,
|
||||
you must now use the `-q` flag before each queue, e.g.
|
||||
`sidekiq -q critical -q default -q low`.
|
||||
|
||||
2.17.1
|
||||
-----------
|
||||
|
|
Loading…
Reference in a new issue