arjun4084346 commented on a change in pull request #3477:
URL: https://github.com/apache/gobblin/pull/3477#discussion_r824723816
##########
File path:
gobblin-utility/src/main/java/org/apache/gobblin/util/WriterUtils.java
##########
@@ -284,13 +286,7 @@ public static void
mkdirsWithRecursivePermissionWithRetry(final FileSystem fs, f
return;
}
- if (path.getParent() != null && !fs.exists(path.getParent())) {
- mkdirsWithRecursivePermissionWithRetry(fs, path.getParent(), perm,
retrierConfig);
- }
-
- if (!fs.mkdirs(path, perm)) {
- throw new IOException(String.format("Unable to mkdir %s with permission
%s", path, perm));
- }
+ gobblinMkDirs(fs, path, perm);
Review comment:
Please update the javadoc in line 271
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]