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

version, changes update

This commit is contained in:
Mike Perham 2013-06-28 10:45:36 -07:00
parent f435bc33bf
commit e441a3cd44
2 changed files with 12 additions and 2 deletions

View file

@ -1,4 +1,4 @@
HEAD
2.13.0
-----------
- Adding button to move scheduled job to main queue [guiceolin, #1020]
- fix i18n support resetting saved locale when job is retried [#1011]
@ -11,6 +11,16 @@ class MyWorker
sidekiq_retry_in { |count| count * 2 }
end
```
- Redesign Worker#retries\_exhausted callback to use same form as above [jmazzi, #1030]
```ruby
class MyWorker
include Sidekiq::Worker
sidekiq_retries_exhausted do |msg|
Rails.logger.error "Failed to process #{msg['class']} with args: #{msg['args']}"
end
end
```
2.12.4
-----------

View file

@ -1,3 +1,3 @@
module Sidekiq
VERSION = "2.12.5"
VERSION = "2.13.0"
end