1
0
Fork 0
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:
Brandon Weiss 2014-01-08 23:31:44 -08:00
parent 6cd4e6a96e
commit 8f7c41bb3e

View file

@ -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
-----------