[
https://issues.apache.org/jira/browse/FLINK-3551?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16068151#comment-16068151
]
ASF GitHub Bot commented on FLINK-3551:
---------------------------------------
Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/2761#discussion_r124658452
--- Diff:
flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examples/windowing/SessionWindowing.java
---
@@ -70,9 +70,7 @@ public void run(SourceContext<Tuple3<String, Long,
Integer>> ctx) throws Excepti
for (Tuple3<String, Long,
Integer> value : input) {
ctx.collectWithTimestamp(value, value.f1);
ctx.emitWatermark(new
Watermark(value.f1 - 1));
- if (!fileOutput) {
-
System.out.println("Collected: " + value);
- }
+
System.out.println("Collected: " + value);
--- End diff --
remove the `println` as well
> Sync Scala and Java Streaming Examples
> --------------------------------------
>
> Key: FLINK-3551
> URL: https://issues.apache.org/jira/browse/FLINK-3551
> Project: Flink
> Issue Type: Sub-task
> Components: Examples
> Affects Versions: 1.0.0
> Reporter: Stephan Ewen
> Assignee: Lim Chee Hau
>
> The Scala Examples lack behind the Java Examples
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)