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

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


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

commit e68f45941aaf114a59ebd762cb600279f6687cc6
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 ec6cc78..84db99b 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
@@ -644,7 +644,7 @@ public class CatalogJanitor extends ScheduledChore {
       }
       this.previous = ri;
       this.highestEndKeyRegionInfo =
-          MetaFixer.getRegionInfoWithLargestEndKey(ri, this.highestEndKeyRegionInfo);
+          MetaFixer.getRegionInfoWithLargestEndKey(this.highestEndKeyRegionInfo, ri);
       return ri;
     }