class Honeybadger::Worker

def start

def start
  return false unless can_start?
  mutex.synchronize do
    @shutdown = false
    @start_at = nil
    return true if thread&.alive?
    @pid = Process.pid
    @thread = Thread.new { run }
  end
  true
end