File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ class ConfigSource(Enum):
56
56
DYNAMIC_DEFAULT_BROKER_CONFIG = _cimpl .CONFIG_SOURCE_DYNAMIC_DEFAULT_BROKER_CONFIG #: Dynamic Default Broker
57
57
STATIC_BROKER_CONFIG = _cimpl .CONFIG_SOURCE_STATIC_BROKER_CONFIG #: Static Broker
58
58
DEFAULT_CONFIG = _cimpl .CONFIG_SOURCE_DEFAULT_CONFIG #: Default
59
+ GROUP_CONFIG = _cimpl .CONFIG_SOURCE_GROUP_CONFIG #: Group
59
60
60
61
61
62
class ConfigEntry (object ):
Original file line number Diff line number Diff line change @@ -514,6 +514,8 @@ static void AdminTypes_AddObjectsConfigSource (PyObject *m) {
514
514
RD_KAFKA_CONFIG_SOURCE_STATIC_BROKER_CONFIG );
515
515
PyModule_AddIntConstant (m , "CONFIG_SOURCE_DEFAULT_CONFIG" ,
516
516
RD_KAFKA_CONFIG_SOURCE_DEFAULT_CONFIG );
517
+ PyModule_AddIntConstant (m , "CONFIG_SOURCE_GROUP_CONFIG" ,
518
+ RD_KAFKA_CONFIG_SOURCE_GROUP_CONFIG );
517
519
}
518
520
519
521
You can’t perform that action at this time.
0 commit comments