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

Prepare for release

This commit is contained in:
Mike Perham 2016-03-04 09:30:56 -08:00
parent 665d17d606
commit 08e90e3ad1
2 changed files with 6 additions and 2 deletions

View file

@ -1,8 +1,10 @@
# Sidekiq Changes
HEAD
4.1.1
-----------
- Much better behavior when Redis disappears and comes back. [#2866]
- Update FR locale [dbachet]
- Don't fill logfile in case of Redis downtime [#2860]
- Allow definition of a global retries_exhausted handler. [#2807]
```ruby

View file

@ -77,7 +77,9 @@ module Sidekiq
# Most likely a problem with redis networking.
# Punt and try again at the next interval
logger.error ex.message
logger.error ex.backtrace.first
ex.backtrace.each do |bt|
logger.error(bt)
end
end
end