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:
parent
665d17d606
commit
08e90e3ad1
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue