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:59:12 UTC

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


The following commit(s) were added to refs/heads/master by this push:
     new 4ed4669  Revert "HBASE-23668 Master log start filling with "Flush journal status" messages" Minor addendum fixing log message.
4ed4669 is described below

commit 4ed466966c824d5c265d32a2835afb3d1884ccab
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