Sha256: 8e53e05964b4054fe753328e0979eec9e8c64722d9d03a3d6aa9e9469d742d97
Contents?: true
Size: 492 Bytes
Versions: 4
Compression:
Stored size: 492 Bytes
Contents
require './app' configure_basics Bugsnag.configure do |conf| conf.delivery_method = :thread_queue end Bugsnag.notify("handled string") do |report| report.add_tab(:config, { :delivery_method => "thread_queue", :forked => true }) end # Added to stop Process deadlock sleep(0.01) Process.fork do Bugsnag.notify("handled string number 2") do |report| report.add_tab(:config, { :delivery_method => "thread_queue", :forked => true }) end end Process.wait
Version data entries
4 entries across 4 versions & 1 rubygems