You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by vj...@apache.org on 2020/05/25 12:12:13 UTC

[hbase] branch branch-2.2 updated: Revert "HBASE-24426 : Provide regionName in warning during failure to move region from CLOSING to CLOSED (#1772)"

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

vjasani 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 aa738c2  Revert "HBASE-24426 : Provide regionName in warning during failure to move region from CLOSING to CLOSED (#1772)"
aa738c2 is described below

commit aa738c22edf88a93f458364c1849099f3ad85e3d
Author: Viraj Jasani <vj...@apache.org>
AuthorDate: Mon May 25 17:42:05 2020 +0530

    Revert "HBASE-24426 : Provide regionName in warning during failure to move region from CLOSING to CLOSED (#1772)"
    
    This reverts commit 9a0a24f6277baef99fed7ee4d10ece493dac4f5e.
---
 .../apache/hadoop/hbase/master/procedure/HBCKServerCrashProcedure.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/HBCKServerCrashProcedure.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/HBCKServerCrashProcedure.java
index de26e06..eec820c 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/HBCKServerCrashProcedure.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/HBCKServerCrashProcedure.java
@@ -153,8 +153,7 @@ public class HBCKServerCrashProcedure extends ServerCrashProcedure {
             MetaTableAccessor.updateRegionState(this.connection, hrl.getRegion(),
                 RegionState.State.CLOSED);
           } catch (IOException ioe) {
-            LOG.warn("Failed moving {} from CLOSING to CLOSED",
-              hrl.getRegion().getRegionNameAsString(), ioe);
+            LOG.warn("Failed moving {} from CLOSING to CLOSED", ioe);
           }
         } else if (rs.isOpening() || rs.isOpened()) {
           this.reassigns.add(hrl.getRegion());