class Honeybadger::Worker

def kill!

def kill!
  d { 'killing worker thread' }
  if thread
    Thread.kill(thread)
    thread.join # Allow ensure blocks to execute.
  end
  true
end