class Faraday::Utils::Headers

def initialize_copy(other)

on dup/clone, we need to duplicate @names hash
def initialize_copy(other)
  super
  @names = other.names.dup
end