소스 검색

Use gssapi instead of the aged kerberos package

requests-kerberos is deprecated, switch to the maintained
requests-gssapi.
Simon Lundström 5 년 전
부모
커밋
566249bbe8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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',