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 40f05be + 36b2d75 commit d3aff5dCopy full SHA for d3aff5d
lib/raven/integrations/delayed_job.rb
@@ -24,10 +24,10 @@ class Raven < ::Delayed::Plugin
24
}
25
26
# last_error can be nil
27
- extra[:last_error] = job.last_error[0...100] if job.last_error
+ extra[:last_error] = job.last_error[0...1000] 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...1000] 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