1
0

[HUDI-3362] Fix restore to rollback pending clustering operations followed by other rolling back other commits (#4772)

This commit is contained in:
satishkotha
2022-02-11 11:12:45 -08:00
committed by GitHub
parent b431246710
commit 89ed6f062e
3 changed files with 30 additions and 7 deletions

View File

@@ -439,7 +439,7 @@ public class SparkMain {
LOG.info(String.format("The commit \"%s\" rolled back.", savepointTime));
return 0;
} catch (Exception e) {
LOG.warn(String.format("The commit \"%s\" failed to roll back.", savepointTime));
LOG.warn(String.format("The commit \"%s\" failed to roll back.", savepointTime), e);
return -1;
}
}
@@ -451,7 +451,7 @@ public class SparkMain {
LOG.info(String.format("Savepoint \"%s\" deleted.", savepointTime));
return 0;
} catch (Exception e) {
LOG.warn(String.format("Failed: Could not delete savepoint \"%s\".", savepointTime));
LOG.warn(String.format("Failed: Could not delete savepoint \"%s\".", savepointTime), e);
return -1;
}
}