pnowojski commented on a change in pull request #17238:
URL: https://github.com/apache/flink/pull/17238#discussion_r709963217
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/CreditBasedSequenceNumberingViewReader.java
##########
@@ -240,7 +240,9 @@ public Throwable getFailureCause() {
@Override
public void releaseAllResources() throws IOException {
- subpartitionView.releaseAllResources();
+ if (subpartitionView != null) {
+ subpartitionView.releaseAllResources();
+ }
Review comment:
? I'm confused by this change and the commit message. How is it related
to FLINK-9057 and/or FLINK-24233?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]