class SplitIoClient::Telemetry::Storages::Memory

def init_http_errors

def init_http_errors
  @http_errors = Concurrent::Array.new
  @http_errors << { type: Domain::Constants::SPLIT_SYNC, value: Concurrent::Hash.new }
  @http_errors << { type: Domain::Constants::SEGMENT_SYNC, value: Concurrent::Hash.new }
  @http_errors << { type: Domain::Constants::EVENT_SYNC, value: Concurrent::Hash.new }
  @http_errors << { type: Domain::Constants::IMPRESSION_COUNT_SYNC, value: Concurrent::Hash.new }
  @http_errors << { type: Domain::Constants::IMPRESSIONS_SYNC, value: Concurrent::Hash.new }
  @http_errors << { type: Domain::Constants::TELEMETRY_SYNC, value: Concurrent::Hash.new }
  @http_errors << { type: Domain::Constants::TOKEN_SYNC, value: Concurrent::Hash.new }
end