You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by nd...@apache.org on 2020/05/07 20:27:42 UTC

[hbase] branch branch-2.3 updated: HBASE-24295 [Chaos Monkey] abstract logging through the class hierarchy ; ADDENDUM

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

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


The following commit(s) were added to refs/heads/branch-2.3 by this push:
     new 6cf1408  HBASE-24295 [Chaos Monkey] abstract logging through the class hierarchy ; ADDENDUM
6cf1408 is described below

commit 6cf140850cfe49aba795825d8bce036a760eee63
Author: Nick Dimiduk <nd...@apache.org>
AuthorDate: Tue May 5 15:15:18 2020 -0700

    HBASE-24295 [Chaos Monkey] abstract logging through the class hierarchy ; ADDENDUM
    
    Signed-off-by: Jan Hentschel <ja...@ultratendency.com>
---
 .../apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java b/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java
index 9ce9056..d516129 100644
--- a/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java
+++ b/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java
@@ -26,7 +26,7 @@ import org.slf4j.LoggerFactory;
 * Action that tries to restart the active master.
 */
 public class RestartActiveMasterAction extends RestartActionBaseAction {
-  private static final Logger LOG = LoggerFactory.getLogger(RestartActionBaseAction.class);
+  private static final Logger LOG = LoggerFactory.getLogger(RestartActiveMasterAction.class);
 
   public RestartActiveMasterAction(long sleepTime) {
     super(sleepTime);