summaryrefslogtreecommitdiff
path: root/kafka/client_async.py
diff options
context:
space:
mode:
Diffstat (limited to 'kafka/client_async.py')
-rw-r--r--kafka/client_async.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/kafka/client_async.py b/kafka/client_async.py
index ac2d364..87922b2 100644
--- a/kafka/client_async.py
+++ b/kafka/client_async.py
@@ -595,7 +595,9 @@ class KafkaClient(object):
self._poll(timeout / 1000)
- responses.extend(self._fire_pending_completed_requests())
+ # called without the lock to avoid deadlock potential
+ # if handlers need to acquire locks
+ responses.extend(self._fire_pending_completed_requests())
# If all we had was a timeout (future is None) - only do one poll
# If we do have a future, we keep looping until it is done