1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Update changes

This commit is contained in:
Mike Perham 2013-03-02 16:08:59 -08:00
parent b9ae174755
commit d982cfd835

View file

@ -1,6 +1,8 @@
2.8.0
-----------
- Fix bug which could lose messages when using namespaces and the message
needs to be requeued in Redis. [#744]
- Refactor Redis namespace support [#747]. The redis namespace can no longer be
passed via the config file, the only supported way is via Ruby in your
initializer:
@ -11,6 +13,9 @@ Sidekiq.configure_server { |config| config.redis = sidekiq_redis }
Sidekiq.configure_client { |config| config.redis = sidekiq_redis }
```
A warning is printed out to the log if a namespace is found in your sidekiq.yml.
2.7.5
-----------