pnowojski commented on a change in pull request #15771:
URL: https://github.com/apache/flink/pull/15771#discussion_r620942924
##########
File path:
flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/AbstractStreamOperatorV2.java
##########
@@ -268,7 +296,11 @@ protected boolean isUsingCustomRawKeyedState() {
* @throws Exception An exception in this method causes the operator to
fail.
*/
@Override
- public void open() throws Exception {}
+ public void open() throws Exception {
+ this.watermarkOutputMultiplexer =
+ setupWatermarkMultiplexer(
+ containingTask.getStreamStatusMaintainer(),
numberOfInputs);
+ }
Review comment:
Why are you initialising this non final field in the open method? It
probably should happen in the constructor and `watermarkOutputMultiplexer`
should be final?
--
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]