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:59:42 UTC

[hbase] branch branch-1.4 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-1.4
in repository https://gitbox.apache.org/repos/asf/hbase.git


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

commit 14a7278f8805446d5435a3b1606e5c727ccc6b47
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 4f57a61..b47f829 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -303,7 +303,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}"