# File lib/uber-s3/connection.rb, line 56 def uri=(uri) # Reset the http connection if the host/port change if !@uri.nil? && !(uri.host == @uri.host && uri.port == @uri.port) self.http = nil end @uri = uri end