wbarnha / kafka-python-ng

Fork for Python client for Apache Kafka
https://wbarnha.github.io/kafka-python-ng/
Apache License 2.0
67 stars 8 forks source link

Rename `GroupCoordinatorRequest` to `FindCoordinatorRequest` #115

Open wbarnha opened 6 months ago

wbarnha commented 6 months ago

In Kafka 0.11, the GroupCoordinatorRequest / GroupCoordinatorResponse structs were renamed to FindCoordinatorRequest / FindCoordinatorResponese as part of KIP-98.

So the following need updating: https://github.com/dpkp/kafka-python/blob/bb5bc1fcfc09c9c9994edbbae0af2ff6802c353d/kafka/protocol/commit.py#L244-L251

https://github.com/dpkp/kafka-python/blob/bb5bc1fcfc09c9c9994edbbae0af2ff6802c353d/kafka/protocol/commit.py#L223-L232

This should be straightforward as currently the v1 version is not used by any of the code.