You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code is from lib/python3.11/site-packages/kafka/conn.py:79, if I didn't install gssapi it should be catched by ImportError, but if it's run by pytest, then there will be a ImportWarning instead of ImportError, so the following code won't work properly.
Its due to an out-of-date vendored version of six in python-kafka (dependency of aiokafka). An update was pushed to their master to push their version to 1.16 2 days ago (dpkp/kafka-python#2398), however, python-kafka hasnt had a tagged update in years...
The following code is from lib/python3.11/site-packages/kafka/conn.py:79, if I didn't install gssapi it should be catched by ImportError, but if it's run by pytest, then there will be a ImportWarning instead of ImportError, so the following code won't work properly.
try:
import gssapi
from gssapi.raw.misc import GSSError
except ImportError:
#no gssapi available, will disable gssapi mechanism
gssapi = None
GSSError = None
The text was updated successfully, but these errors were encountered: