Skip to content

Commit c3dbfe3

Browse files
committed
Remove extra flush when closing piped output stream
1 parent 8eb0fa7 commit c3dbfe3

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

clickhouse-client/src/main/java/com/clickhouse/client/stream/BlockingPipedOutputStream.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,10 @@ public void close() throws IOException {
102102
Thread.currentThread().interrupt();
103103
throw new IOException("Thread was interrupted when putting EMPTY buffer into queue", e);
104104
} finally {
105-
super.close();
105+
closed = true;
106+
if (postCloseAction != null) {
107+
postCloseAction.run();
108+
}
106109
}
107110
}
108111

clickhouse-client/src/main/java/com/clickhouse/client/stream/NonBlockingPipedOutputStream.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,11 @@ public void close() throws IOException {
116116
for (int i = 0, len = buckets.length; i < len; i++) {
117117
buckets[i] = null;
118118
}
119-
super.close();
119+
120+
closed = true;
121+
if (postCloseAction != null) {
122+
postCloseAction.run();
123+
}
120124
}
121125
}
122126

0 commit comments

Comments
 (0)