Github user pnowojski commented on a diff in the pull request:
https://github.com/apache/flink/pull/5423#discussion_r168479100
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/PipelinedSubpartition.java
---
@@ -131,9 +114,9 @@ public void release() {
}
// Release all available buffers
- Buffer buffer;
- while ((buffer = buffers.poll()) != null) {
- buffer.recycleBuffer();
+ BufferConsumer bufferConsumer;
+ while ((bufferConsumer = buffers.poll()) != null) {
--- End diff --
I see what you mean and I think that maybe this code could be deduplicated
even further (moving `readView` field to the abstract class), but can we leave
it as future work?
---