Github user NicoK commented on a diff in the pull request: https://github.com/apache/flink/pull/5105#discussion_r156392377 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/api/writer/RecordWriterTest.java --- @@ -360,7 +367,7 @@ public void testBroadcastEventMixedRecords() throws Exception { queues[i] = new ArrayDeque<>(); } - BufferProvider bufferProvider = createBufferProvider(bufferSize); + TestPooledBufferProvider bufferProvider = new TestPooledBufferProvider(Integer.MAX_VALUE, bufferSize); --- End diff -- why not also change the `createBufferProvider()` call in line 327 and remove both `createBufferProvider` methods?
---