This is an automated email from the ASF dual-hosted git repository.
liuxiaocs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 9fe9593b5da HBASE-29922 Change hadoop check versions after supporting
hadoop 3.4.3 (#7943)
9fe9593b5da is described below
commit 9fe9593b5dafd8489ed3fd73589c6cd04456868b
Author: Xiao Liu <[email protected]>
AuthorDate: Tue Mar 17 15:16:45 2026 +0800
HBASE-29922 Change hadoop check versions after supporting hadoop 3.4.3
(#7943)
Signed-off-by: Duo Zhang <[email protected]>
---
dev-support/hbase-personality.sh | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 715c750b9d7..577f7c77deb 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -606,17 +606,17 @@ function hadoopcheck_rebuild
# TODO remove this on non 2.5 branches ?
yetus_info "Setting Hadoop 3 versions to test based on branch-2.5 rules"
if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
- hbase_hadoop3_versions="3.2.4 3.3.6 3.4.1"
+ hbase_hadoop3_versions="3.2.4 3.3.6 3.4.2"
else
- hbase_hadoop3_versions="3.2.3 3.2.4 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.4.0
3.4.1"
+ hbase_hadoop3_versions="3.2.3 3.2.4 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.4.0
3.4.1 3.4.2"
fi
else
yetus_info "Setting Hadoop 3 versions to test based on
branch-2.6+/master/feature branch rules"
# Isn't runnung these tests with the default Hadoop version redundant ?
if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
- hbase_hadoop3_versions="3.3.6 3.4.1"
+ hbase_hadoop3_versions="3.3.6 3.4.2"
else
- hbase_hadoop3_versions="3.3.5 3.3.6 3.4.0 3.4.1"
+ hbase_hadoop3_versions="3.3.5 3.3.6 3.4.0 3.4.1 3.4.2"
fi
fi