Sfoglia il codice sorgente

Use gssapi instead of the aged kerberos package

requests-kerberos is deprecated, switch to the maintained
requests-gssapi.
Simon Lundström 5 anni fa
parent
commit
566249bbe8
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      pepper/libpepper.py

+ 2 - 2
pepper/libpepper.py

@@ -267,8 +267,8 @@ class Pepper(object):
 
         '''
         import requests
-        from requests_kerberos import HTTPKerberosAuth, OPTIONAL
-        auth = HTTPKerberosAuth(mutual_authentication=OPTIONAL)
+        from requests_gssapi import HTTPSPNEGOAuth, OPTIONAL
+        auth = HTTPSPNEGOAuth(mutual_authentication=OPTIONAL)
         headers = {
             'Accept': 'application/json',
             'Content-Type': 'application/json',