Github user NicoK commented on a diff in the pull request:
https://github.com/apache/flink/pull/4509#discussion_r141290289
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/PartitionRequestQueue.java
---
@@ -193,7 +193,8 @@ private void writeAndFlushNextMessageIfPossible(final
Channel channel) throws IO
BufferResponse msg = new
BufferResponse(
next.buffer(),
reader.getSequenceNumber(),
- reader.getReceiverId());
+ reader.getReceiverId(),
+ 0);
--- End diff --
I suspect, this is changed to the actual value by the next PR, isn't it?
---