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.
1 parent 1baa7f2 commit 9661815Copy full SHA for 9661815
lib/raven/integrations/delayed_job.rb
@@ -27,7 +27,7 @@ class Raven < ::Delayed::Plugin
27
extra[:last_error] = job.last_error[0...100] if job.last_error
28
# handlers are YAML objects in strings, we definitely can't
29
# report all of that or the event will get truncated randomly
30
- extra[:handler] = job.handler[0...100] if job.handler
+ extra[:handler] = job.handler[0...255] if job.handler
31
32
if job.respond_to?('payload_object') && job.payload_object.respond_to?('job_data')
33
extra[:active_job] = job.payload_object.job_data
0 commit comments