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

Fix e => ex

This commit is contained in:
Claudio Poli 2012-02-27 21:55:41 +01:00
parent d99253a2c7
commit b5d60450e3

View file

@ -30,7 +30,7 @@ module Sidekiq
end end
def send_to_exception_notifier(msg, ex) def send_to_exception_notifier(msg, ex)
::ExceptionNotifier::Notifier.background_exception_notification(e, :data => { :message => msg }) ::ExceptionNotifier::Notifier.background_exception_notification(ex, :data => { :message => msg })
end end
end end
end end