diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperator.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperator.java index ee81685daecc1..e18a225ef4bdc 100644 --- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperator.java +++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperator.java @@ -154,7 +154,7 @@ public void setup( throw new IllegalStateException("Unknown async mode: " + outputMode + '.'); } - this.timestampedCollector = new TimestampedCollector<>(output); + this.timestampedCollector = new TimestampedCollector<>(super.output); } @Override