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

Version Path
bugsnag-6.12.2 features/fixtures/plain/app/delivery/fork_threadpool.rb
bugsnag-6.12.1 features/fixtures/plain/app/delivery/fork_threadpool.rb
bugsnag-6.12.0 features/fixtures/plain/app/delivery/fork_threadpool.rb
bugsnag-6.11.1 features/fixtures/plain/app/delivery/fork_threadpool.rb
bugsnag-6.11.0 features/fixtures/plain/app/delivery/fork_threadpool.rb
bugsnag-6.10.0 features/fixtures/plain/app/delivery/fork_threadpool.rb
bugsnag-6.9.0 features/fixtures/plain/app/delivery/fork_threadpool.rb
bugsnag-6.8.0 features/fixtures/plain/app/delivery/fork_threadpool.rb