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.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/kafka/client_async.py b/kafka/client_async.py
index 682fd7c..0d9e562 100644
--- a/kafka/client_async.py
+++ b/kafka/client_async.py
@@ -598,6 +598,10 @@ class KafkaClient(object):
# locked section of poll(), there is no additional lock acquisition here
processed = set()
+ # Send pending requests first, before polling for responses
+ for conn in six.itervalues(self._conns):
+ conn.send_pending_requests()
+
start_select = time.time()
ready = self._selector.select(timeout)
end_select = time.time()
@@ -650,8 +654,6 @@ class KafkaClient(object):
conn.close(error=Errors.RequestTimedOutError(
'Request timed out after %s ms' %
conn.config['request_timeout_ms']))
- else:
- conn.send_pending_requests()
if self._sensors:
self._sensors.io_time.record((time.time() - end_select) * 1000000000)