File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
src/confluent_kafka/_model Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 11# Confluent's Python client for Apache Kafka
22
3+ ## v2.1.1
4+
5+ v2.1.1 is a maintenance release with the following fixes and enhancements:
6+
7+ ### Fixes
8+
9+ - Added a new ConsumerGroupState UNKNOWN. The typo state UNKOWN is deprecated and will be removed in the next major version.
10+
11+
312## v2.1.0
413
514v2.1.0 is a feature release with the following features, fixes and enhancements:
Original file line number Diff line number Diff line change @@ -64,16 +64,21 @@ class ConsumerGroupState(Enum):
6464 """
6565 Enumerates the different types of Consumer Group State.
6666
67+ Note that the state UNKOWN (typo one) is deprecated and will be removed in
68+ future major release. Use UNKNOWN instead.
69+
6770 Values
6871 ------
69- UNKOWN : State is not known or not set.
72+ UNKNOWN : State is not known or not set.
73+ UNKOWN : State is not known or not set. Typo.
7074 PREPARING_REBALANCING : Preparing rebalance for the consumer group.
7175 COMPLETING_REBALANCING : Consumer Group is completing rebalancing.
7276 STABLE : Consumer Group is stable.
7377 DEAD : Consumer Group is Dead.
7478 EMPTY : Consumer Group is Empty.
7579 """
76- UNKOWN = cimpl .CONSUMER_GROUP_STATE_UNKNOWN
80+ UNKNOWN = cimpl .CONSUMER_GROUP_STATE_UNKNOWN
81+ UNKOWN = UNKNOWN
7782 PREPARING_REBALANCING = cimpl .CONSUMER_GROUP_STATE_PREPARING_REBALANCE
7883 COMPLETING_REBALANCING = cimpl .CONSUMER_GROUP_STATE_COMPLETING_REBALANCE
7984 STABLE = cimpl .CONSUMER_GROUP_STATE_STABLE
You can’t perform that action at this time.
0 commit comments