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 2020/01/10 23:58:23 UTC

[hbase] branch branch-2 updated: Revert "HBASE-23668 Master log start filling with "Flush journal status" messages" Minor addendum fixing log message.

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 6bd6396  Revert "HBASE-23668 Master log start filling with "Flush journal status" messages" Minor addendum fixing log message.
6bd6396 is described below

commit 6bd6396c97ee720ad66e60b5eb434c527491b04b
Author: stack <st...@apache.org>
AuthorDate: Fri Jan 10 15:57:46 2020 -0800

    Revert "HBASE-23668 Master log start filling with "Flush journal status" messages"
    Minor addendum fixing log message.
---
 .../hadoop/hbase/procedure2/store/region/RegionFlusherAndCompactor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/RegionFlusherAndCompactor.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/RegionFlusherAndCompactor.java
index ee3dbad..8e3ffa3 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/RegionFlusherAndCompactor.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/RegionFlusherAndCompactor.java
@@ -121,7 +121,7 @@ class RegionFlusherAndCompactor implements Closeable {
     compactExecutor = Executors.newSingleThreadExecutor(new ThreadFactoryBuilder()
       .setNameFormat("Procedure-Region-Store-Compactor").setDaemon(true).build());
     LOG.info("Constructor flushSize={}, flushPerChanges={}, flushIntervalMs={}, " +
-        "compactMin=", flushSize, flushPerChanges, flushIntervalMs, compactMin);
+        "compactMin={}", flushSize, flushPerChanges, flushIntervalMs, compactMin);
   }
 
   // inject our flush related configurations