You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@gobblin.apache.org by GitBox <gi...@apache.org> on 2021/04/16 20:22:22 UTC

[GitHub] [gobblin] autumnust commented on a change in pull request #3263: [GOBBLIN-1427] Handle MountPointNotFoundException when determining files in target for File Distcp

autumnust commented on a change in pull request #3263:
URL: https://github.com/apache/gobblin/pull/3263#discussion_r615102907



##########
File path: gobblin-data-management/src/main/java/org/apache/gobblin/data/management/copy/RecursiveCopyableDataset.java
##########
@@ -179,7 +179,7 @@ public RecursiveCopyableDataset(final FileSystem fs, Path rootPath, Properties p
     try {
       return FileListUtils
           .listFilesToCopyAtPath(fs, path, fileFilter, applyFilterToDirectories, includeEmptyDirectories);
-    } catch (FileNotFoundException fnfe) {
+    } catch (IOException e) {

Review comment:
       Shall we print the exception in a certain way here? 




-- 
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