Activity log for bug #1258504

Date Who What changed Old value New value Message
2013-12-06 12:24:58 Anastasiia Guzikova bug added bug
2013-12-06 12:25:07 Anastasiia Guzikova cinder: assignee Anastasia Guzikova (aguzikova)
2013-12-06 12:26:59 Anastasiia Guzikova summary extract_opts.py generates cinder.conf.sample without grouping some options that should be grouped not as [DEFAULT] extract_opts.py generates cinder.conf.sample grouping some options in [DEFAULT] block when they should be grouped in the specific group, not default
2013-12-06 13:17:17 Anastasiia Guzikova description E.g. 'topics' option in the cinder/openstack/common/notifier/rpc_notifier2.py is defined as 'rpc_notifier2' group's member: notification_topic_opt = cfg.ListOpt( 'topics', default=['notifications', ], help='AMQP topic(s) used for OpenStack notifications') opt_group = cfg.OptGroup(name='rpc_notifier2', title='Options for rpc_notifier2') CONF = cfg.CONF CONF.register_group(opt_group) CONF.register_opt(notification_topic_opt, opt_group) but corresponding part of cinder.conf.sample is generated by extract_opts.py contains: # # Options defined in cinder.openstack.common.notifier.rpc_notifier2 # # AMQP topic(s) used for OpenStack notifications (list value) #topics=notifications which belongs to the '[DEFAULT]' block. E.g. 'topics' option in the cinder/openstack/common/notifier/rpc_notifier2.py is defined as 'rpc_notifier2' group's member: notification_topic_opt = cfg.ListOpt(     'topics', default=['notifications', ],     help='AMQP topic(s) used for OpenStack notifications') opt_group = cfg.OptGroup(name='rpc_notifier2',                          title='Options for rpc_notifier2') CONF = cfg.CONF CONF.register_group(opt_group) CONF.register_opt(notification_topic_opt, opt_group) but corresponding part of cinder.conf.sample is generated by extract_opts.py contains: # # Options defined in cinder.openstack.common.notifier.rpc_notifier2 # # AMQP topic(s) used for OpenStack notifications (list value) #topics=notifications which belongs to the '[DEFAULT]' block.
2013-12-06 13:34:29 OpenStack Infra cinder: status New In Progress
2014-01-10 00:49:56 John Griffith cinder: importance Undecided Low
2014-01-10 00:50:12 John Griffith cinder: milestone icehouse-2
2014-01-10 02:15:46 Huang Zhiteng marked as duplicate 1260322