diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-08-07 15:41:27 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-08-07 15:41:27 -0700 |
| commit | 46b0cb8c86e822b9bf8c8fd0c048659afd05bc23 (patch) | |
| tree | 28d3db5323b134731dd43e30a335ab3af48dc059 /other/java | |
| parent | 270770d7d7bc78b46813d43a0b7ef34c601c8aa3 (diff) | |
| parent | de730b079da4d9e046c4816a4f74a19c4ddf6712 (diff) | |
| download | seaweedfs-46b0cb8c86e822b9bf8c8fd0c048659afd05bc23.tar.xz seaweedfs-46b0cb8c86e822b9bf8c8fd0c048659afd05bc23.zip | |
Merge branch 'master' into add_remote_storage
Diffstat (limited to 'other/java')
| -rw-r--r-- | other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java b/other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java index 3bec05796..7a94acbd0 100644 --- a/other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java +++ b/other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java @@ -32,10 +32,10 @@ public class SeaweedOutputStream extends OutputStream { private long lastTotalAppendOffset = 0; private ByteBuffer buffer; private long outputIndex; - private String replication = "000"; + private String replication = ""; public SeaweedOutputStream(FilerClient filerClient, final String fullpath) { - this(filerClient, fullpath, "000"); + this(filerClient, fullpath, ""); } public SeaweedOutputStream(FilerClient filerClient, final String fullpath, final String replication) { |
