jonvex commented on code in PR #13497:
URL: https://github.com/apache/hudi/pull/13497#discussion_r2298891256
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/table/action/rollback/RollbackHelper.java:
##########
@@ -216,6 +216,13 @@ protected List<HoodieRollbackStat>
deleteFiles(HoodieTableMetaClient metaClient,
isDeleted = true;
}
}
+ if (!isDeleted) {
+ if (metaClient.getStorage().exists(fullDeletePath)) {
+ LOG.warn("Deleting file during rollback execution failed for {} ",
fullDeletePath);
+ throw new HoodieIOException("Failing to delete file during
rollback execution failed : " + fullDeletePath);
Review Comment:
I don't think there should be a space 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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]