From 9f5e6696dff5c6873d0348a4377f88bdeb93c543 Mon Sep 17 00:00:00 2001 From: Michael Price Date: Wed, 2 Sep 2015 13:48:05 -0500 Subject: [PATCH] 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 --- cinder/volume/drivers/netapp/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ' -- 2.45.2