Sha256: 3ffce8074ce7bdf4db53b1553f8c1e20f76be2b6f9f41df5b80a4c22e5d639ba
Contents?: true
Size: 446 Bytes
Versions: 8
Compression:
Stored size: 446 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 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
8 entries across 8 versions & 1 rubygems