summaryrefslogtreecommitdiff
path: root/kafka
diff options
context:
space:
mode:
Diffstat (limited to 'kafka')
-rw-r--r--kafka/coordinator/consumer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/kafka/coordinator/consumer.py b/kafka/coordinator/consumer.py
index e7a687e..0e610c7 100644
--- a/kafka/coordinator/consumer.py
+++ b/kafka/coordinator/consumer.py
@@ -563,7 +563,8 @@ class ConsumerCoordinator(BaseCoordinator):
# Verify node is ready
if not self._client.ready(node_id):
- log.debug("Node %s not ready -- failing offset fetch request")
+ log.debug("Node %s not ready -- failing offset fetch request",
+ node_id)
return Future().failure(Errors.NodeNotReadyError)
log.debug("Fetching committed offsets for partitions: %s", partitions)