danny0405 commented on code in PR #10392:
URL: https://github.com/apache/hudi/pull/10392#discussion_r1434661985


##########
hudi-common/src/main/java/org/apache/hudi/common/table/timeline/HoodieActiveTimeline.java:
##########
@@ -695,8 +695,8 @@ protected void transitionPendingState(HoodieInstant 
fromInstant, HoodieInstant t
         }
       } else {
         // Ensures old state exists in timeline
-        LOG.info("Checking for file exists ?" + 
getInstantFileNamePath(fromInstantFileName));
-        
ValidationUtils.checkArgument(metaClient.getFs().exists(getInstantFileNamePath(fromInstantFileName)));
+        
ValidationUtils.checkArgument(metaClient.getFs().exists(getInstantFileNamePath(fromInstantFileName)),
+            "file " + getInstantFileNamePath(fromInstantFileName) + " does not 
exist!");

Review Comment:
   ```suggestion
               "File " + getInstantFileNamePath(fromInstantFileName) + " does 
not exist!");
   ```



-- 
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]

Reply via email to