Browse Source

Merge pull request #2184 from jbarotin/master

pull/2211/head
Chris Lu 4 years ago
committed by GitHub
parent
commit
3df153421d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      other/java/client/src/main/java/seaweedfs/client/ByteBufferPool.java

2
other/java/client/src/main/java/seaweedfs/client/ByteBufferPool.java

@ -10,7 +10,7 @@ import java.util.List;
public class ByteBufferPool {
private static final int MIN_BUFFER_SIZE = 8 * 1024 * 1024;
private static final int MIN_BUFFER_SIZE = 1 * 1024 * 1024;
private static final Logger LOG = LoggerFactory.getLogger(ByteBufferPool.class);
private static final List<ByteBuffer> bufferList = new ArrayList<>();

Loading…
Cancel
Save