# File lib/travis/client/session.rb, line 58
      def uri=(uri)
        clear_cache!
        self.connection = Faraday.new(:url => uri, :ssl => ssl) do |faraday|
          faraday.request  :url_encoded
          faraday.response :logger if debug_http
          faraday.adapter(*faraday_adapter)
        end
      end