dawidwys commented on a change in pull request #17663:
URL: https://github.com/apache/flink/pull/17663#discussion_r743604169
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/consumer/SingleInputGate.java
##########
@@ -396,12 +396,18 @@ int getBuffersInUseCount() {
@VisibleForTesting
public void announceBufferSize(int newBufferSize) {
for (InputChannel channel : channels) {
- channel.announceBufferSize(newBufferSize);
+ if (!channel.isReleased()) {
+ channel.announceBufferSize(newBufferSize);
+ }
}
}
@Override
public void triggerDebloating() {
+ if (isFinished()) {
Review comment:
How about?:
```
if (isFinished() || closeFuture.isDone()) {
```
--
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]