You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2020/08/13 08:56:17 UTC

[hbase] branch branch-2.3 updated: HBASE-24876 Fix the flaky job url in hbase-personality.sh (#2253)

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

zghao pushed a commit to branch branch-2.3
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.3 by this push:
     new 86c411a  HBASE-24876 Fix the flaky job url in hbase-personality.sh (#2253)
86c411a is described below

commit 86c411a5358ec7e1630f41aef2422a74929bc9fe
Author: Guanghao Zhang <zg...@apache.org>
AuthorDate: Thu Aug 13 16:30:09 2020 +0800

    HBASE-24876 Fix the flaky job url in hbase-personality.sh (#2253)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 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 8ed1a83..d7ca64c 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -318,7 +318,7 @@ function get_include_exclude_tests_arg
       fi
   else
     # Use branch specific exclude list when EXCLUDE_TESTS_URL and INCLUDE_TESTS_URL are empty
-    FLAKY_URL="https://builds.apache.org/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/"
+    FLAKY_URL="https://ci-hadoop.apache.org/job/HBase/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/"
     if wget "${FLAKY_URL}" -O "excludes"; then
       excludes=$(cat excludes)
         yetus_debug "excludes=${excludes}"