Note capistrano-sidekiq gem

This commit is contained in:
Mike Perham 2014-03-12 21:37:18 -07:00
parent 766a86add6
commit bcaa6d43d8
2 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,7 @@ Please see [Upgrading.md](Upgrading.md) for more comprehensive upgrade notes.
- **Process Heartbeat** - each Sidekiq process will ping Redis every 5
seconds to give a summary of the Sidekiq population at work.
- **Remove official Capistrano integration** - this integration has been
moved into the capistrano-sidekiq gem.
moved into the [capistrano-sidekiq](https://github.com/seuros/capistrano-sidekiq) gem.
- **Remove official support for Ruby 1.9** - Things still might work but
I no longer actively test on it.
- **Remove built-in support for Redis-to-Go**.

View File

@ -6,6 +6,9 @@ changes a few data elements in Redis. To upgrade cleanly:
* Upgrade to the latest Sidekiq 2.x and run it for a few weeks.
`gem 'sidekiq', '< 3'`
This is only needed if you have retries pending.
* If you used the capistrano integration, you'll need to pull in the
new [capistrano-sidekiq](https://github.com/seuros/capistrano-sidekiq)
gem and use it in your deploy.rb.
* API changes:
- `Sidekiq::Client.registered_workers` replaced by `Sidekiq::Workers.new`
- `Sidekiq::Client.registered_queues` replaced by `Sidekiq::Queue.all`