This is an automated email from the ASF dual-hosted git repository.
liuxiaocs pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-3 by this push:
new dc4ef981b17 HBASE-29922 Change hadoop check versions after supporting
hadoop 3.4.3 (#7943)
dc4ef981b17 is described below
commit dc4ef981b176a3807e285ae8bfaa90f0c0f140ed
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]>
(cherry picked from commit 9fe9593b5dafd8489ed3fd73589c6cd04456868b)
---
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 2f56d1bcdf6..b5bd436064d 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -615,17 +615,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