class ElasticAPM::Transport::Connection

def flush(reason = :force)

def flush(reason = :force)
  # Could happen from the timertask so we need to sync
  @mutex.synchronize do
    return if http.nil?
    http.close(reason)
  end
end