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:30:30 UTC

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


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

commit a838d727faff4caea00e2417dc0a54d7c693b374
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 +-
 .../org/apache/hadoop/hbase/replication/TestReplicationStatus.java     | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 9dbe77a..d0e0f2d 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}"
diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationStatus.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationStatus.java
index 08031a2..17c2931 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationStatus.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationStatus.java
@@ -66,7 +66,6 @@ public class TestReplicationStatus extends TestReplicationBase {
    * create a ClusterStatus instance 'status' from HBaseAdmin
    * test : status.getLoad(server).getReplicationLoadSourceList()
    * test : status.getLoad(server).getReplicationLoadSink()
-   * * @throws Exception
    */
   @Test
   public void testReplicationStatus() throws Exception {
@@ -139,4 +138,4 @@ public class TestReplicationStatus extends TestReplicationBase {
     }
     return list;
   }
-}
\ No newline at end of file
+}