From: Michael Price Date: Wed, 2 Sep 2015 18:48:05 +0000 (-0500) Subject: Fix netapp_enable_multiattach default for E-Series X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=9f5e6696dff5c6873d0348a4377f88bdeb93c543;p=openstack-build%2Fcinder-build.git Fix netapp_enable_multiattach default for E-Series The E-Series driver erroneously changed the netapp_enable_multiattach option to default to True. This option should default to False to ensure backwards-compatibility with upgrades. DocImpact Closes-Bug: #1491580 Change-Id: Iafb4d80bd83c2de0a5b77178206c7f3028ac6554 --- diff --git a/cinder/volume/drivers/netapp/options.py b/cinder/volume/drivers/netapp/options.py index f58a6475b..8dcf16f1c 100644 --- a/cinder/volume/drivers/netapp/options.py +++ b/cinder/volume/drivers/netapp/options.py @@ -168,7 +168,7 @@ netapp_eseries_opts = [ ' be a comma separated list of disk pool names to be used' ' for provisioning.')), cfg.BoolOpt('netapp_enable_multiattach', - default=True, + default=False, help='This option specifies whether the driver should allow ' 'operations that require multiple attachments to a ' 'volume. An example would be live migration of servers '