The base class FibreChannelDriver was
missing the new accept_transfer method.
This was caught while running the devstack
driver certification tests again the
3PAR FC driver.
This patch adds the missing method to the
base VolumeDriver.
Change-Id: I0aa91a4f11edd03eee7607d15317b89c30732cb7
Closes-Bug: #
1269633
"""
return False
+ def accept_transfer(self, context, volume, new_user, new_project):
+ """Accept the transfer of a volume for a new user/project."""
+ pass
+
class ISCSIDriver(VolumeDriver):
"""Executes commands relating to ISCSI volumes.
data['QoS_support'] = False
self._stats = data
- def accept_transfer(self, context, volume, new_user, new_project):
- pass
-
def get_target_admin(self):
root_helper = utils.get_root_helper()
if CONF.iscsi_helper == 'iseradm':