]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Fix ArgsAlreadyParsedError in emc_vnx_cli.py
authorpeter_wang <peter.wang13@emc.com>
Fri, 13 Mar 2015 06:27:17 +0000 (02:27 -0400)
committerWang Peter <wangxu198709@gmail.com>
Fri, 13 Mar 2015 14:46:56 +0000 (07:46 -0700)
This error was introduced after adding following:
logging.register_options(CONF)
in https://review.openstack.org/#/c/157441/
So, this patchset is to remove this.

Change-Id: I3d7d30fb8a5d8f5424811fc7422efc2546300a12
Closes-Bug: 1431875

cinder/volume/drivers/emc/emc_vnx_cli.py

index d423a76692850234bdf54d26683a0f4683174870..b4526f315e2d6c08ceb5ae289ff94d7047b0f5cb 100644 (file)
@@ -48,7 +48,6 @@ from cinder.volume import volume_types
 
 CONF = cfg.CONF
 
-logging.register_options(CONF)
 LOG = logging.getLogger(__name__)
 
 
@@ -1585,7 +1584,7 @@ class CommandLineHelper(object):
 class EMCVnxCliBase(object):
     """This class defines the functions to use the native CLI functionality."""
 
-    VERSION = '05.03.01'
+    VERSION = '05.03.02'
     stats = {'driver_version': VERSION,
              'storage_protocol': None,
              'vendor_name': 'EMC',