Github user pnowojski commented on a diff in the pull request:
https://github.com/apache/flink/pull/4517#discussion_r136831169
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/NettyMessage.java
---
@@ -439,20 +437,23 @@ ByteBuf write(ByteBufAllocator allocator) throws
IOException {
}
}
- @Override
- public void readFrom(ByteBuf buffer) throws IOException {
+ static TaskEventRequest readFrom(ByteBuf buffer, ClassLoader
classLoader) throws IOException {
+ TaskEventRequest result = new TaskEventRequest();
--- End diff --
ditto
---