from cinder.tests import fake_hp_client_exceptions as hpexceptions
hplefthand = mock.Mock()
-hplefthand.version = "1.0.3"
+hplefthand.version = "1.0.4"
hplefthand.exceptions = hpexceptions
sys.modules['hplefthandclient'] = hplefthand
LOG = logging.getLogger(__name__)
-MIN_CLIENT_VERSION = '1.0.3'
+MIN_CLIENT_VERSION = '1.0.4'
class HPLeftHandISCSIDriver(driver.VolumeDriver):
1.0.3 - Fix for no handler for logger during tests
1.0.4 - Removing locks bug #1395953
1.0.5 - Adding support for manage/unmanage.
+ 1.0.6 - Fixed #1432757 Updated minimum client version.
"""
- VERSION = "1.0.5"
+ VERSION = "1.0.6"
def __init__(self, *args, **kwargs):
super(HPLeftHandISCSIDriver, self).__init__(*args, **kwargs)