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 1
1
# Confluent's Python client for Apache Kafka
2
2
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
+
3
12
## v2.1.0
4
13
5
14
v2.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):
64
64
"""
65
65
Enumerates the different types of Consumer Group State.
66
66
67
+ Note that the state UNKOWN (typo one) is deprecated and will be removed in
68
+ future major release. Use UNKNOWN instead.
69
+
67
70
Values
68
71
------
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.
70
74
PREPARING_REBALANCING : Preparing rebalance for the consumer group.
71
75
COMPLETING_REBALANCING : Consumer Group is completing rebalancing.
72
76
STABLE : Consumer Group is stable.
73
77
DEAD : Consumer Group is Dead.
74
78
EMPTY : Consumer Group is Empty.
75
79
"""
76
- UNKOWN = cimpl .CONSUMER_GROUP_STATE_UNKNOWN
80
+ UNKNOWN = cimpl .CONSUMER_GROUP_STATE_UNKNOWN
81
+ UNKOWN = UNKNOWN
77
82
PREPARING_REBALANCING = cimpl .CONSUMER_GROUP_STATE_PREPARING_REBALANCE
78
83
COMPLETING_REBALANCING = cimpl .CONSUMER_GROUP_STATE_COMPLETING_REBALANCE
79
84
STABLE = cimpl .CONSUMER_GROUP_STATE_STABLE
You can’t perform that action at this time.
0 commit comments