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

Merge branch 'master' of github.com:mperham/sidekiq

This commit is contained in:
Mike Perham 2013-11-10 20:32:57 -08:00
commit 8219243782

View file

@ -41,13 +41,13 @@ module Sidekiq
after(0) { fetch }
end
rescue => ex
handle_exception(ex)
handle_fetch_exception(ex)
end
end
end
def handle_exception(ex)
def handle_fetch_exception(ex)
if !@down
logger.error("Error fetching message: #{ex}")
ex.backtrace.each do |bt|