# File lib/rhc/auth/x509.rb, line 17
    def retry_auth?(response, client)
      # This is really only hit in the case of token auth falling back to x509.
      # x509 auth doesn't usually get 401s.
      if response && response.status != 401
        false
      else
        true
      end
    end