This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch HBASE-29930
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/HBASE-29930 by this push:
new d97eb9e50e6 fix
d97eb9e50e6 is described below
commit d97eb9e50e6a174c09087fdd516cdca45492bbf7
Author: Duo Zhang <[email protected]>
AuthorDate: Sat Feb 28 15:17:41 2026 +0800
fix
---
.../integration-test/integration-test.Jenkinsfile | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/dev-support/integration-test/integration-test.Jenkinsfile
b/dev-support/integration-test/integration-test.Jenkinsfile
index 0328a1569f7..c006a01d709 100644
--- a/dev-support/integration-test/integration-test.Jenkinsfile
+++ b/dev-support/integration-test/integration-test.Jenkinsfile
@@ -125,15 +125,16 @@ pipeline {
} // script
} // always
} // post
- @NonCPS
- def getHadoopVersions() {
- def hadoop_versions = env.HADOOP3_VERSIONS
- .split(',')
- .collect { it.trim() }
- .findAll { it } as String[]
- hadoop_versions << env.HADOOP2_VERSION
- return hadoop_versions
- }
+}
+
+@NonCPS
+List<String> getHadoopVersions() {
+ def hadoop_versions = env.HADOOP3_VERSIONS
+ .split(',')
+ .collect { it.trim() }
+ .findAll { it } as String[]
+ hadoop_versions << env.HADOOP2_VERSION
+ return hadoop_versions
}
import org.jenkinsci.plugins.workflow.support.steps.build.RunWrapper