class Honeybadger::Worker

def inc_throttle

def inc_throttle
  mutex.synchronize do
    @throttle += 1
    @throttle_interval = calc_throttle_interval
    throttle
  end
end