Skip to content

Commit

Permalink
HBASE-24165 maxPoolSize is logged incorrectly in ByteBufferPool
Browse files Browse the repository at this point in the history
  • Loading branch information
pankaj72981 committed Apr 10, 2020
1 parent a521a80 commit 927a7cc
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ public ByteBufferPool(int bufferSize, int maxPoolSize, boolean directByteBuffer)
this.directByteBuffer = directByteBuffer;
// TODO can add initialPoolSize config also and make those many BBs ready for use.
LOG.info("Created with bufferSize={} and maxPoolSize={}",
org.apache.hadoop.util.StringUtils.byteDesc(bufferSize),
org.apache.hadoop.util.StringUtils.byteDesc(maxPoolSize));
org.apache.hadoop.util.StringUtils.byteDesc(bufferSize), maxPoolSize);
this.count = new AtomicInteger(0);
}

Expand Down

0 comments on commit 927a7cc

Please sign in to comment.