dawidwys commented on a change in pull request #15771:
URL: https://github.com/apache/flink/pull/15771#discussion_r620945438
##########
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:
Fully agree, the problem is that the
`containingTask.getStreamStatusMaintainer()` is not set until the `open` method.
--
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]