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

[hbase] 02/04: Revert "SE-22006 Fix branch-2.1 findbugs warning; causes nightly show as failed."

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

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

commit ee30872dcf6dc2a1c6e90440e9e4ecd6397a1275
Author: Sean Busbey <bu...@apache.org>
AuthorDate: Thu Mar 7 08:52:29 2019 -0600

    Revert "SE-22006 Fix branch-2.1 findbugs warning; causes nightly show as failed."
    
    This reverts commit 764adaad3489913ec5bbdfa5526c4ab5a710dfaf.
    
    bad commit message
---
 .../java/org/apache/hadoop/hbase/regionserver/HRegionServer.java     | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
index 794af6e..1e871b7 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
@@ -1590,8 +1590,9 @@ public class HRegionServer extends HasThread implements
           MemStoreLAB.POOL_INITIAL_SIZE_DEFAULT);
       int chunkSize = conf.getInt(MemStoreLAB.CHUNK_SIZE_KEY, MemStoreLAB.CHUNK_SIZE_DEFAULT);
       // init the chunkCreator
-      ChunkCreator.initialize(chunkSize, offheap, globalMemStoreSize, poolSizePercentage,
-        initialCountPercentage, this.hMemManager);
+      ChunkCreator chunkCreator =
+          ChunkCreator.initialize(chunkSize, offheap, globalMemStoreSize, poolSizePercentage,
+      initialCountPercentage, this.hMemManager);
     }
   }