includes options defined in kafka common

The generated sample config did not include common kafka options
specified in kafka_common.py.
This was resolved by appending these options along with options
unique to the kafka metric-topic/alarm-topic

Change-Id: I3d765e9bdef0cfac186ebb9bddd97a7336076794
story: 2002649
task: 22355
This commit is contained in:
Charana Nandasena 2018-06-22 15:22:57 +01:00 committed by Charana
parent bac8724315
commit db7aee716c
3 changed files with 3 additions and 3 deletions

View File

@ -62,4 +62,4 @@ def register_opts(conf):
def list_opts():
return kafka_alarm_history_group, kafka_alarm_history_opts
return kafka_alarm_history_group, kafka_alarm_history_opts + kafka_common_opts

View File

@ -54,4 +54,4 @@ def register_opts(conf):
def list_opts():
return kafka_events_group, kafka_events_opts
return kafka_events_group, kafka_events_opts + kafka_common_opts

View File

@ -59,4 +59,4 @@ def register_opts(conf):
def list_opts():
return kafka_metrics_group, kafka_metrics_opts
return kafka_metrics_group, kafka_metrics_opts + kafka_common_opts