SE-22006 Fix branch-2.1 findbugs warning; causes nightly show as failed.

This commit is contained in:
stack 2019-03-06 15:59:06 -08:00
parent 763202d48e
commit 18d02ffd5d
1 changed files with 2 additions and 3 deletions

View File

@ -1613,9 +1613,8 @@ public class HRegionServer extends HasThread implements
MemStoreLAB.POOL_INITIAL_SIZE_DEFAULT); MemStoreLAB.POOL_INITIAL_SIZE_DEFAULT);
int chunkSize = conf.getInt(MemStoreLAB.CHUNK_SIZE_KEY, MemStoreLAB.CHUNK_SIZE_DEFAULT); int chunkSize = conf.getInt(MemStoreLAB.CHUNK_SIZE_KEY, MemStoreLAB.CHUNK_SIZE_DEFAULT);
// init the chunkCreator // init the chunkCreator
ChunkCreator chunkCreator = ChunkCreator.initialize(chunkSize, offheap, globalMemStoreSize, poolSizePercentage,
ChunkCreator.initialize(chunkSize, offheap, globalMemStoreSize, poolSizePercentage, initialCountPercentage, this.hMemManager);
initialCountPercentage, this.hMemManager);
} }
} }