We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 898d85c commit 72d13d8Copy full SHA for 72d13d8
1 file changed
cinder/volume/drivers/dell_emc/unity/driver.py
@@ -18,8 +18,8 @@
18
from oslo_config import cfg
19
from oslo_log import log as logging
20
21
+from cinder.volume import driver
22
from cinder.volume.drivers.dell_emc.unity import adapter
-from cinder.volume.drivers.san import san
23
from cinder.volume.drivers.san.san import san_opts
24
from cinder.zonemanager import utils as zm_utils
25
@@ -45,7 +45,10 @@
45
CONF.register_opts(UNITY_OPTS)
46
47
48
-class UnityDriver(san.SanDriver):
+class UnityDriver(driver.TransferVD,
49
+ driver.ManageableVD,
50
+ driver.ManageableSnapshotsVD,
51
+ driver.BaseVD):
52
"""Unity Driver.
53
54
Version history:
0 commit comments