1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-18 09:20:25 +02:00

Java client: ByteBuffer.clear supports higher JDK versions

fix https://github.com/chrislusf/seaweedfs/issues/1836
This commit is contained in:
Chris Lu 2021-02-24 07:40:32 -08:00
parent d3a7196635
commit 1d848641d7

View file

@ -8,6 +8,7 @@ import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.io.InterruptedIOException;
import java.io.OutputStream;
import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.util.concurrent.*;
@ -217,7 +218,7 @@ public class SeaweedOutputStream extends OutputStream {
private synchronized int submitWriteBufferToService(final ByteBuffer bufferToWrite, final long writePosition) throws IOException {
bufferToWrite.flip();
((Buffer)bufferToWrite).flip();
int bytesLength = bufferToWrite.limit() - bufferToWrite.position();
if (threadExecutor.getQueue().size() >= maxConcurrentRequestCount) {