Skip to content

Commit 72d13d8

Browse files
committed
[GH-6] Add TransferVD base
1 parent 898d85c commit 72d13d8

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

  • cinder/volume/drivers/dell_emc/unity

cinder/volume/drivers/dell_emc/unity/driver.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
from oslo_config import cfg
1919
from oslo_log import log as logging
2020

21+
from cinder.volume import driver
2122
from cinder.volume.drivers.dell_emc.unity import adapter
22-
from cinder.volume.drivers.san import san
2323
from cinder.volume.drivers.san.san import san_opts
2424
from cinder.zonemanager import utils as zm_utils
2525

@@ -45,7 +45,10 @@
4545
CONF.register_opts(UNITY_OPTS)
4646

4747

48-
class UnityDriver(san.SanDriver):
48+
class UnityDriver(driver.TransferVD,
49+
driver.ManageableVD,
50+
driver.ManageableSnapshotsVD,
51+
driver.BaseVD):
4952
"""Unity Driver.
5053
5154
Version history:

0 commit comments

Comments
 (0)