We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 751d227 + 5fd5338 commit 3297cb7Copy full SHA for 3297cb7
lib/raven/integrations/delayed_job.rb
@@ -17,7 +17,9 @@ class Raven < ::Delayed::Plugin
17
:id => job.id,
18
:priority => job.priority,
19
:attempts => job.attempts,
20
- :handler => job.handler,
+ # handlers are YAML objects in strings, we definitely can't
21
+ # report all of that or the event will get truncated randomly
22
+ :handler => job.handler[0...100],
23
:last_error => job.last_error,
24
:run_at => job.run_at,
25
:locked_at => job.locked_at,
0 commit comments