summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openshift-storage-libs/openshiftstoragelibs/heketi_ops.py4
-rw-r--r--tests/functional/heketi/test_block_volumes_heketi.py2
-rw-r--r--tests/functional/heketi/test_heketi_brick_evict.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/openshift-storage-libs/openshiftstoragelibs/heketi_ops.py b/openshift-storage-libs/openshiftstoragelibs/heketi_ops.py
index 30e08f0f..1f6a7705 100644
--- a/openshift-storage-libs/openshiftstoragelibs/heketi_ops.py
+++ b/openshift-storage-libs/openshiftstoragelibs/heketi_ops.py
@@ -321,7 +321,7 @@ def heketi_blockvolume_expand(heketi_client_node, heketi_server_url,
"""
version = heketi_version.get_heketi_version(heketi_client_node)
- if version < '9.0.0-13':
+ if version < '9.0.0-14':
msg = ("heketi-client package {} does not support blockvolume "
"expand".format(version.v_str))
g.log.error(msg)
@@ -2139,7 +2139,7 @@ def heketi_brick_evict(heketi_client_node, heketi_server_url, brick_id,
"""
version = heketi_version.get_heketi_version(heketi_client_node)
- if version < '9.0.0-13':
+ if version < '9.0.0-14':
msg = (
"heketi-client package {} does not support brick evict".format(
version.v_str))
diff --git a/tests/functional/heketi/test_block_volumes_heketi.py b/tests/functional/heketi/test_block_volumes_heketi.py
index f56ead9c..cee48242 100644
--- a/tests/functional/heketi/test_block_volumes_heketi.py
+++ b/tests/functional/heketi/test_block_volumes_heketi.py
@@ -602,7 +602,7 @@ class TestBlockVolumeOps(GlusterBlockBaseClass):
h_node, h_server = self.heketi_client_node, self.heketi_server_url
version = heketi_version.get_heketi_version(h_node)
- if version < '9.0.0-13':
+ if version < '9.0.0-14':
self.skipTest("heketi-client package {} does not support "
"blockvolume expand".format(version.v_str))
diff --git a/tests/functional/heketi/test_heketi_brick_evict.py b/tests/functional/heketi/test_heketi_brick_evict.py
index de0cb4f4..27cc1ebf 100644
--- a/tests/functional/heketi/test_heketi_brick_evict.py
+++ b/tests/functional/heketi/test_heketi_brick_evict.py
@@ -15,7 +15,7 @@ class TestHeketiBrickEvict(BaseClass):
super(TestHeketiBrickEvict, self).setUp()
version = heketi_version.get_heketi_version(self.heketi_client_node)
- if version < '9.0.0-13':
+ if version < '9.0.0-14':
self.skipTest(
"heketi-client package {} does not support brick evict".format(
version.v_str))