You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2019/10/07 14:53:15 UTC

[hbase] branch branch-1.4 updated: HBASE-23094 Wrong log message in simpleRegionNormaliser while checking if merge is enabled.

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

psomogyi 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 6738c2b  HBASE-23094 Wrong log message in simpleRegionNormaliser while checking if merge is enabled.
6738c2b is described below

commit 6738c2be153cab1a78a6c065c53a564d4e2bc9bd
Author: Sanjeet Nishad <sa...@gmail.com>
AuthorDate: Mon Oct 7 12:09:14 2019 +0530

    HBASE-23094 Wrong log message in simpleRegionNormaliser while checking if merge is enabled.
    
    Signed-off-by: Peter Somogyi <ps...@apache.org>
---
 .../apache/hadoop/hbase/master/normalizer/SimpleRegionNormalizer.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/normalizer/SimpleRegionNormalizer.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/normalizer/SimpleRegionNormalizer.java
index b346c14..9b91767 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/normalizer/SimpleRegionNormalizer.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/normalizer/SimpleRegionNormalizer.java
@@ -118,7 +118,7 @@ public class SimpleRegionNormalizer implements RegionNormalizer {
       mergeEnabled = masterRpcServices.isSplitOrMergeEnabled(null,
         RequestConverter.buildIsSplitOrMergeEnabledRequest(MasterSwitchType.MERGE)).getEnabled();
     } catch (ServiceException se) {
-      LOG.debug("Unable to determine whether split is enabled", se);
+      LOG.debug("Unable to determine whether merge is enabled", se);
     }
     if (!splitEnabled && !mergeEnabled) {
       LOG.debug("Both split and merge are disabled for table: " + table);