2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 11:01:09 +00:00

Disable gssapi in paramiko

It is just plain broken, workaround by tanking calls to gssapi prior
to pulling in paramiko.
This commit is contained in:
Jarrod Johnson 2018-09-21 13:46:07 -04:00
parent c68c4d8cf7
commit 18bebde337

View File

@ -24,6 +24,8 @@ import confluent.interface.console as conapi
import confluent.log as log
import eventlet
import hashlib
import sys
sys.modules['gssapi'] = None
paramiko = eventlet.import_patched('paramiko')