The following patch made a few wrong changes in the VMAX driver.
https://review.openstack.org/#/c/145780/
The following two files contain the wrong changes:
https://review.openstack.org/#/c/145780/15/cinder/tests/
test_emc_vmax.py line 604
https://review.openstack.org/#/c/145780/15/cinder/volume/drivers/
emc/emc_vmax_https.py
This patch fixed them.
Change-Id: I3f078ec7915c904ab910eb9ef9f07ac351282489
result = None
if ResultClass == 'EMC_StorageHardwareID':
result = self._assoc_hdwid()
- elif ResultClass == 'EMC_iSHEADCSIProtocolEndpoint':
+ elif ResultClass == 'EMC_iSCSIProtocolEndpoint':
result = self._assoc_endpoint()
elif ResultClass == 'EMC_StorageVolume':
result = self._assoc_storagevolume(objectpath)
a delegator must be used.
"""
def __init__(self, *args, **kwargs):
- self.connection = SSL.Connection(*args, **kwargs)
+ self.connection = SSL.GreenConnection(*args, **kwargs)
def __getattr__(self, name):
return getattr(self.connection, name)