From 2a20befd8f300b3970c20677da2d210c0ed85d17 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Tue, 11 Mar 2014 15:50:38 +0100 Subject: [PATCH] Add missing config values for vmwware_vmdk test Import CONF.glance_api_version from cinder.common.config Closes-Bug: 1290883 Change-Id: I9f64c2f60efe517ad8e4ee2a98ed8da4be257b47 --- cinder/image/glance.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cinder/image/glance.py b/cinder/image/glance.py index aca124387f9..79af5703fa9 100644 --- a/cinder/image/glance.py +++ b/cinder/image/glance.py @@ -44,6 +44,7 @@ glance_opts = [ ] CONF = cfg.CONF CONF.register_opts(glance_opts) +CONF.import_opt('glance_api_version', 'cinder.common.config') LOG = logging.getLogger(__name__)