Sha256: 0e7b8fdf24bccf3ed94a51b8d3befe3d28736804789b7add41f8883d249c1377
Contents?: true
Size: 293 Bytes
Versions: 22
Compression:
Stored size: 293 Bytes
Contents
module Bugsnag::Middleware class Sidekiq def initialize(bugsnag) @bugsnag = bugsnag end def call(notification) sidekiq = notification.request_data[:sidekiq] notification.add_tab(:sidekiq, sidekiq) if sidekiq @bugsnag.call(notification) end end end
Version data entries
22 entries across 22 versions & 2 rubygems