Fokko commented on code in PR #9184: URL: https://github.com/apache/iceberg/pull/9184#discussion_r1411608715
########## core/src/main/java/org/apache/iceberg/CatalogUtil.java: ########## @@ -150,8 +154,7 @@ private static void deleteFiles(FileIO io, Set<ManifestFile> allManifests) { String type = reader.isDeleteManifestReader() ? "delete" : "data"; deleteFiles(io, pathsToDelete, type, false); } catch (IOException e) { - throw new RuntimeIOException( - e, "Failed to read manifest file: %s", manifest.path()); + LOG.warn("Failed to read manifest file: {}", manifest.path(), e); Review Comment: This might be both reading or deleting files, should we update the message? -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org