浏览代码

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',