This is an automated email from the ASF dual-hosted git repository.
lindong pushed a commit to branch release-2.2
in repository https://gitbox.apache.org/repos/asf/flink-ml.git
The following commit(s) were added to refs/heads/release-2.2 by this push:
new 96f70749 [hotfix] Update pattern matching in test_ml_lib_completeness
to work with release branch
96f70749 is described below
commit 96f707499453d53c58d45e5a0091e32f2c88c98b
Author: Dong Lin <[email protected]>
AuthorDate: Wed Apr 12 11:43:43 2023 +0800
[hotfix] Update pattern matching in test_ml_lib_completeness to work with
release branch
---
flink-ml-python/pyflink/ml/tests/test_ml_lib_completeness.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/flink-ml-python/pyflink/ml/tests/test_ml_lib_completeness.py
b/flink-ml-python/pyflink/ml/tests/test_ml_lib_completeness.py
index 243c0dbe..7563ff7e 100644
--- a/flink-ml-python/pyflink/ml/tests/test_ml_lib_completeness.py
+++ b/flink-ml-python/pyflink/ml/tests/test_ml_lib_completeness.py
@@ -50,7 +50,7 @@ class MLLibTest(PyFlinkMLTestCase):
this_directory, "../../../../flink-ml-lib"))
ml_lib_jar = glob.glob(os.path.join(
- FLINK_ML_LIB_SOURCE_PATH, "target",
"flink-ml-lib-*SNAPSHOT.jar"))[0]
+ FLINK_ML_LIB_SOURCE_PATH, "target", "flink-ml-lib-*.jar"))[0]
StageAnalyzer =
get_gateway().jvm.org.apache.flink.ml.util.StageAnalyzer
module_path = 'org.apache.flink.ml.{0}'.format(self.module_name())