Merge "3PAR: Set the right minimum client version"

This commit is contained in:
Zuul
2020-08-14 08:24:00 +00:00
committed by Gerrit Code Review
4 changed files with 3 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ from cinder.tests.unit.volume.drivers.hpe \
import fake_hpe_client_exceptions as hpeexceptions
hpe3par = mock.Mock()
hpe3par.version = "4.2.0"
hpe3par.version = "4.2.10"
hpe3par.exceptions = hpeexceptions
sys.modules['hpe3parclient'] = hpe3par

View File

@@ -7117,7 +7117,6 @@ class TestHPE3PARDriverBase(HPE3PARBaseDriver):
@ddt.ddt
class TestHPE3PARFCDriver(HPE3PARBaseDriver):
properties = {
'driver_volume_type': 'fibre_channel',
'data': {

View File

@@ -75,7 +75,7 @@ except ImportError:
LOG = logging.getLogger(__name__)
MIN_CLIENT_VERSION = '4.2.0'
MIN_CLIENT_VERSION = '4.2.10'
DEDUP_API_VERSION = 30201120
FLASH_CACHE_API_VERSION = 30201200
COMPRESSION_API_VERSION = 30301215

View File

@@ -3,7 +3,7 @@
# requirements tools.
# HPE 3PAR
python-3parclient>=4.1.0 # Apache-2.0
python-3parclient>=4.2.10 # Apache-2.0
# Kaminario
krest>=1.3.0 # Apache-2.0