pnowojski commented on a change in pull request #11177: [FLINK-16219][runtime]
Made AsyncWaitOperator chainable to non-sources.
URL: https://github.com/apache/flink/pull/11177#discussion_r383142120
##########
File path:
flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperatorTest.java
##########
@@ -365,10 +365,10 @@ private void
testProcessingTime(AsyncDataStream.OutputMode mode) throws Exceptio
}
/**
- * Test for the temporary fix to FLINK-13063.
+ * Tests FLINK-16219.
*/
@Test
- public void testAsyncOperatorIsNeverChained() {
+ public void testAsyncOperatorIsNotChainedToSources() {
StreamExecutionEnvironment chainEnv =
StreamExecutionEnvironment.getExecutionEnvironment();
DataStream<Integer> input = chainEnv.fromElements(1);
Review comment:
add a simple mapping function?
```
input = chainEnv.fromElements(1).map(....);
```
----------------------------------------------------------------
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]
With regards,
Apache Git Services