Rajeev-01 commented on code in PR #14148:
URL: https://github.com/apache/hudi/pull/14148#discussion_r2458966847
##########
hudi-common/src/main/java/org/apache/hudi/common/util/ConfigUtils.java:
##########
@@ -714,7 +725,7 @@ public static void recoverIfNeeded(HoodieStorage storage,
StoragePath cfgPath,
TypedProperties props = new TypedProperties();
try (InputStream in = storage.open(cfgPath)) {
props.load(in);
- if (!props.containsKey(TABLE_CHECKSUM.key()) ||
!HoodieTableConfig.validateChecksum(props)) {
+ if (isPropertiesInvalid(props)) {
Review Comment:
While updating if the checksum won't present (assuming it generated from old
version which is previous logic before
https://github.com/apache/hudi/pull/13740) and we will generate while updating,
so from next update we will check for the checksum.
--
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]