From 4cbb4be4659d9966584163453825e52658b79aa6 Mon Sep 17 00:00:00 2001 From: kalyan Date: Fri, 1 Dec 2023 13:46:42 +0530 Subject: [PATCH] fix Signed-off-by: kalyan --- tests/ml_commons/test_model_connector.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/ml_commons/test_model_connector.py b/tests/ml_commons/test_model_connector.py index f5040fe85..de91f17ac 100644 --- a/tests/ml_commons/test_model_connector.py +++ b/tests/ml_commons/test_model_connector.py @@ -15,9 +15,8 @@ from tests import OPENSEARCH_TEST_CLIENT OPENSEARCH_VERSION = parse_version(os.environ.get("OPENSEARCH_VERSION", "2.11.0")) -CONNECTOR_MIN_VERSION = parse_version("2.11.0") +CONNECTOR_MIN_VERSION = parse_version("2.9.0") -print("!@#", OPENSEARCH_VERSION < CONNECTOR_MIN_VERSION) @pytest.fixture def client(): return Connector(OPENSEARCH_TEST_CLIENT)