From cab168c9349f6f3f156333887ad78b14783b80ed Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Tue, 8 Jan 2013 06:44:36 +0000 Subject: [PATCH] Move cert_topic into nova.cert.rpcapi The cert_topic opt is only used in nova.cert.rpcapi and it makes sense for the RPC module to "own" the topic option. blueprint: scope-config-opts Change-Id: If3584b8e1984e0425d9f33133f9d291739b04d49 --- bin/nova-cert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/nova-cert b/bin/nova-cert index 8488d09e..113b0651 100755 --- a/bin/nova-cert +++ b/bin/nova-cert @@ -39,7 +39,7 @@ from nova import service from nova import utils CONF = cfg.CONF -CONF.import_opt('cert_topic', 'nova.config') +CONF.import_opt('cert_topic', 'nova.cert.rpcapi') if __name__ == '__main__': config.parse_args(sys.argv)