]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Move iscsi flags back to driver.py
authorjohn-griffith <john.griffith@solidfire.com>
Thu, 17 Jan 2013 01:49:07 +0000 (18:49 -0700)
committerjohn-griffith <john.griffith@solidfire.com>
Thu, 17 Jan 2013 01:53:25 +0000 (18:53 -0700)
During the lvm class create the iscsi flags were moved.
This is NOT correct, the flags belong with the ISCSI class
and should have been left in driver.py where ISCSIDriver
is defined.

Moving these breaks the inheritance structure for all those that
inherit from ISCSIDriver.

Change-Id: I1fda9158d9f8f01005875b87265d2dd87bcbc67f

cinder/volume/driver.py
cinder/volume/drivers/lvm.py

index 9a3cc70b065a3a8b174bc850e7f510e226142367..2e4de3648265b273b0de6dcf1b6182f7c93d1a43 100644 (file)
@@ -26,7 +26,6 @@ from cinder import exception
 from cinder import flags
 from cinder.openstack.common import cfg
 from cinder.openstack.common import log as logging
-from cinder.openstack.common import timeutils
 from cinder import utils
 
 
@@ -42,7 +41,18 @@ volume_opts = [
     cfg.IntOpt('num_iscsi_scan_tries',
                default=3,
                help='number of times to rescan iSCSI target to find volume'),
-]
+    cfg.IntOpt('iscsi_num_targets',
+               default=100,
+               help='Number of iscsi target ids per host'),
+    cfg.StrOpt('iscsi_target_prefix',
+               default='iqn.2010-10.org.openstack:',
+               help='prefix for iscsi volumes'),
+    cfg.StrOpt('iscsi_ip_address',
+               default='$my_ip',
+               help='The port that the iSCSI daemon is listening on'),
+    cfg.IntOpt('iscsi_port',
+               default=3260,
+               help='The port that the iSCSI daemon is listening on'), ]
 
 FLAGS = flags.FLAGS
 FLAGS.register_opts(volume_opts)
index 1e0c694e537f8fe20493d0f9806f07c8ea45a1cd..b1b217d73d04c6c9640527c4094f4ae8557b1766 100644 (file)
@@ -50,18 +50,7 @@ volume_opts = [
                default=0,
                help='If set, create lvms with multiple mirrors. Note that '
                     'this requires lvm_mirrors + 2 pvs with available space'),
-    cfg.IntOpt('iscsi_num_targets',
-               default=100,
-               help='Number of iscsi target ids per host'),
-    cfg.StrOpt('iscsi_target_prefix',
-               default='iqn.2010-10.org.openstack:',
-               help='prefix for iscsi volumes'),
-    cfg.StrOpt('iscsi_ip_address',
-               default='$my_ip',
-               help='The port that the iSCSI daemon is listening on'),
-    cfg.IntOpt('iscsi_port',
-               default=3260,
-               help='The port that the iSCSI daemon is listening on'), ]
+]
 
 FLAGS = flags.FLAGS
 FLAGS.register_opts(volume_opts)