You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2022/11/10 04:13:16 UTC

[hbase] branch master updated: HBASE-27472 The personality script set wrong hadoop2 check version for branch-2 (#4866)

This is an automated email from the ASF dual-hosted git repository.

zhangduo 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 6c32d1a3fb2 HBASE-27472 The personality script set wrong hadoop2 check version for branch-2 (#4866)
6c32d1a3fb2 is described below

commit 6c32d1a3fb218f3639a6c2037d84624bcf74575a
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Thu Nov 10 12:13:10 2022 +0800

    HBASE-27472 The personality script set wrong hadoop2 check version for branch-2 (#4866)
    
    Signed-off-by: Xin Sun <dd...@gmail.com>
---
 dev-support/hbase-personality.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 5f18b4652af..efe84345f06 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -582,7 +582,7 @@ function hadoopcheck_rebuild
     else
       hbase_hadoop2_versions="2.10.0 2.10.1 2.10.2"
     fi
-  elif [[ "${PATCH_BRANCH}" = branch-2.* ]]; then
+  elif [[ "${PATCH_BRANCH}" = branch-2* ]]; then
     yetus_info "Setting Hadoop 2 versions to test based on branch-2.5+ rules."
     hbase_hadoop2_versions="2.10.2"
   else