pnowojski commented on a change in pull request #13529:
URL: https://github.com/apache/flink/pull/13529#discussion_r503306426
##########
File path:
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/io/StreamTwoInputProcessor.java
##########
@@ -180,10 +174,10 @@ public InputStatus processInput() throws Exception {
if (readingInputIndex == 0) {
firstInputStatus = processor1.processInput();
- checkFinished(firstInputStatus);
+ inputSelectionHandler.nextSelection();
} else {
secondInputStatus = processor2.processInput();
- checkFinished(secondInputStatus);
+ inputSelectionHandler.nextSelection();
Review comment:
nitty nit: move `inputSelectionHandler.nextSelection();` outside of the
if/else?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]