Method: NewRelic::Agent::HTTPClients::EthonHTTPResponse#headers

Defined in:
lib/new_relic/agent/http_clients/ethon_wrappers.rb

#headersObject Also known as: to_hash

[View source]

24
25
26
27
28
29
# File 'lib/new_relic/agent/http_clients/ethon_wrappers.rb', line 24

def headers
  # Ethon::Easy#response_headers will return '' if headers are unset
  @easy.response_headers.scan(/\n([^:]+?): ([^:\n]+?)\r/).each_with_object({}) do |pair, hash|
    hash[format_key(pair[0])] = pair[1]
  end
end