You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2019/09/12 20:28:34 UTC

[hbase] branch branch-2 updated: HBASE-22796 [HBCK2] Add fix of overlaps to fixMeta hbck Service

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

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


The following commit(s) were added to refs/heads/branch-2 by this push:
     new 9059a41  HBASE-22796 [HBCK2] Add fix of overlaps to fixMeta hbck Service
9059a41 is described below

commit 9059a41fe09dddbf4af89f37ab1f9ab2d70e5717
Author: stack <st...@apache.org>
AuthorDate: Thu Sep 12 13:07:24 2019 -0700

    HBASE-22796 [HBCK2] Add fix of overlaps to fixMeta hbck Service
    
    Addendum for branch-2+.
    
    Signed-off-by: Peter Somogyi <ps...@apache.org>
---
 .../src/main/java/org/apache/hadoop/hbase/master/CatalogJanitor.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/CatalogJanitor.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/CatalogJanitor.java
index dbe3599..42c830a 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/CatalogJanitor.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/CatalogJanitor.java
@@ -650,7 +650,7 @@ public class CatalogJanitor extends ScheduledChore {
       }
       this.previous = ri;
       this.highestEndKeyRegionInfo =
-          MetaFixer.getRegionInfoWithLargestEndKey(ri, this.highestEndKeyRegionInfo);
+          MetaFixer.getRegionInfoWithLargestEndKey(this.highestEndKeyRegionInfo, ri);
       return ri;
     }