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
KafkaConnection inherits from threading.local, which is patched by
gevent to ensure one connection per greenlet, instead of one per
thread. If threading.local patching is detected, the base class
will be changed to object.
manfre
pushed a commit
to manfre/kafka-python
that referenced
this issue
Oct 24, 2014
KafkaConnection inherits from threading.local, which is patched by
gevent to ensure one connection per greenlet, instead of one per
thread. If threading.local patching is detected, the base class
will be changed to object.
manfre
added a commit
to manfre/kafka-python
that referenced
this issue
Oct 24, 2014
KafkaConnection inherits from threading.local, which is patched by
gevent to ensure one connection per greenlet, instead of one per
thread. If threading.local patching is detected, the base class
will be changed to object.
KafkaConnection inherits from threading.local. When using gevent, this results in each greenlet having its own KafkaConnection.
The text was updated successfully, but these errors were encountered: