You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2021/05/10 01:55:35 UTC

[GitHub] [hudi] garyli1019 commented on a change in pull request #2931: [MINOR] optimize FilePathUtils

garyli1019 commented on a change in pull request #2931:
URL: https://github.com/apache/hudi/pull/2931#discussion_r629007133



##########
File path: hudi-flink/src/main/java/org/apache/hudi/table/format/FilePathUtils.java
##########
@@ -260,12 +245,12 @@ private static void listStatusRecursively(
       int level,
       int expectLevel,
       List<FileStatus> results) throws IOException {
-    if (expectLevel == level && !isHiddenFile(fileStatus)) {
+    if (expectLevel == level && isHiddenFile(fileStatus)) {

Review comment:
       why should we load hidden files?




-- 
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:
users@infra.apache.org