Pārlūkot izejas kodu

Use gssapi instead of the aged kerberos package

requests-kerberos is deprecated, switch to the maintained
requests-gssapi.
Simon Lundström 5 gadi atpakaļ
vecāks
revīzija
566249bbe8
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  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',