Add cfg.CONF.import_group for service_credentials

The cfg.CONF.service_credentials attribute is used without calling
cfg.CONF.import_group. Add calling the method in this patch.

Change-Id: I700c5ea7ae5ff3f61c28a767e5aa60db0dfb46ce
Closes-Bug: 1373753
This commit is contained in:
Hisashi Osanai 2014-09-30 15:39:18 +09:00
parent 8b61fdd2db
commit 157044dfcc

View File

@ -48,6 +48,7 @@ service_types_opts = [
cfg.CONF.register_opts(OPTS)
cfg.CONF.register_opts(service_types_opts, group='service_types')
cfg.CONF.import_group('service_credentials', 'ceilometer.service')
class _Base(plugin.CentralPollster):