Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/2301#discussion_r72416703 --- Diff: flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/AbstractUdfStreamOperator.java --- @@ -55,13 +56,18 @@ /** the user function */ protected final F userFunction; + + protected EventTimeFunction eventTimeFunction; /** Flag to prevent duplicate function.close() calls in close() and dispose() */ private transient boolean functionsClosed = false; public AbstractUdfStreamOperator(F userFunction) { this.userFunction = requireNonNull(userFunction); + if(userFunction instanceof EventTimeFunction) { --- End diff -- missing space after if
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---