Skip to content

Commit 52bde48

Browse files
author
Swen
committed
remove outdated note in admin/client.py
1 parent 12f0a00 commit 52bde48

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

kafka/admin/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@ def _find_coordinator_id(self, group_id):
339339
name as a string.
340340
:return: The node_id of the broker that is the coordinator.
341341
"""
342-
# Note: Java may change how this is implemented in KAFKA-6791.
343342
future = self._find_coordinator_id_send_request(group_id)
344343
self._wait_for_futures([future])
345344
response = future.value
@@ -357,7 +356,6 @@ def _find_many_coordinator_ids(self, group_ids):
357356
:return: A list of tuples (group_id, node_id) where node_id is the id
358357
of the broker that is the coordinator for the corresponding group.
359358
"""
360-
# Note: Java may change how this is implemented in KAFKA-6791.
361359
futures = {
362360
group_id: self._find_coordinator_id_send_request(group_id)
363361
for group_id in group_ids

0 commit comments

Comments
 (0)