Github user fhueske commented on a diff in the pull request: https://github.com/apache/incubator-flink/pull/201#discussion_r20382595 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/DataSourceTask.java --- @@ -202,8 +203,9 @@ public void invoke() throws Exception { // as long as there is data to read while (!this.taskCanceled && !format.reachedEnd()) { // build next pair and ship pair if it is valid - if ((record = format.nextRecord(record)) != null) { - output.collect(record); + OT r; --- End diff -- see above
--- 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. ---