-
-
Save timdiggins/190403991c3a98c0f0c6 to your computer and use it in GitHub Desktop.
notify bugsnag when delayed job errors occur
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# some references which helped | |
# http://blog.salsify.com/engineering/delayed-jobs-callbacks-and-hooks-in-rails | |
# http://stackoverflow.com/a/16639849/109175 | |
# example plugin: https://github.com/collectiveidea/delayed_job/blob/master/lib/delayed/plugins/clear_locks.rb | |
module Delayed | |
module Plugins | |
class Bugsnag < Plugin | |
callbacks do |lifecycle| | |
lifecycle.around(:invoke_job) do |job, &block| | |
begin | |
block.call(job) | |
rescue Exception => error | |
::Bugsnag.auto_notify(error) | |
raise | |
end | |
end | |
end | |
end | |
end | |
end | |
Delayed::Worker.plugins << Delayed::Plugins::Bugsnag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment