aljoscha commented on a change in pull request #7639: [FLINK-9920] Only check
part files in BucketingSinkFaultToleranceITCase
URL: https://github.com/apache/flink/pull/7639#discussion_r253055436
##########
File path:
flink-connectors/flink-connector-filesystem/src/test/java/org/apache/flink/streaming/connectors/fs/bucketing/BucketingSinkFaultToleranceITCase.java
##########
@@ -144,6 +148,10 @@ public void postSubmit() throws Exception {
while (files.hasNext()) {
LocatedFileStatus file = files.next();
+// if (!file.getPath().getName().startsWith(PART_PREFIX)) {
+ // ignore files that don't match with our
expected part prefix
+// continue;
+// }
Review comment:
Ah, this is the code I actually added. I must have commented out by accident.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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