aboutsummaryrefslogtreecommitdiff
path: root/other/java
diff options
context:
space:
mode:
authorbingoohuang <bingoo.huang@gmail.com>2021-07-12 13:47:42 +0800
committerGitHub <noreply@github.com>2021-07-12 13:47:42 +0800
commit272c7836c3a97c0ab8b31e335d7fa6efc769edc0 (patch)
treeb17792c1a77e0c2fdd07b371da64ca5a14a62f75 /other/java
parented57a55eaec2318bf21693582105660d7612118b (diff)
parentd013d6d9680296ba13c3f0da09f3bb3ae8550828 (diff)
downloadseaweedfs-272c7836c3a97c0ab8b31e335d7fa6efc769edc0.tar.xz
seaweedfs-272c7836c3a97c0ab8b31e335d7fa6efc769edc0.zip
Merge pull request #1 from chrislusf/master
Diffstat (limited to 'other/java')
-rw-r--r--other/java/client/src/main/java/seaweedfs/client/ByteBufferPool.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/other/java/client/src/main/java/seaweedfs/client/ByteBufferPool.java b/other/java/client/src/main/java/seaweedfs/client/ByteBufferPool.java
index 51053becd..19ae78277 100644
--- a/other/java/client/src/main/java/seaweedfs/client/ByteBufferPool.java
+++ b/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<>();