deniskuzZ commented on code in PR #5990: URL: https://github.com/apache/hive/pull/5990#discussion_r2228600170
########## common/src/java/org/apache/hadoop/hive/common/FileUtils.java: ########## @@ -830,7 +830,14 @@ public static boolean copy(FileSystem srcFS, Path[] srcs, FileSystem dstFS, Path throw new IOException("copying multiple files, but last argument `" + dst + "' is not a directory"); } } catch (FileNotFoundException var16) { - throw new IOException("`" + dst + "': specified destination directory does not exist", var16); + // Create a new FileNotFoundException with the custom message and the original message + FileNotFoundException e = new FileNotFoundException("'" + dst + "': specified destination directory does not exist"); Review Comment: that's a common code, I don't think it's safe to change it just to handle replication edge-case -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org