nsivabalan commented on code in PR #13229:
URL: https://github.com/apache/hudi/pull/13229#discussion_r2076684915


##########
hudi-common/src/main/java/org/apache/hudi/common/util/ClusteringUtils.java:
##########
@@ -111,7 +112,7 @@ public static Option<HoodieInstant> 
getInflightClusteringInstant(String timestam
   public static Option<HoodieInstant> getRequestedClusteringInstant(String 
timestamp, HoodieActiveTimeline activeTimeline, InstantGenerator factory) {
     HoodieTimeline pendingReplaceOrClusterTimeline = 
activeTimeline.filterPendingReplaceOrClusteringTimeline();
     HoodieInstant requestedInstant = 
factory.getClusteringCommitRequestedInstant(timestamp);
-    if (pendingReplaceOrClusterTimeline.containsInstant(requestedInstant)) {
+    if (pendingReplaceOrClusterTimeline.containsInstant(timestamp)) {

Review Comment:
   we are justing using the overloaded method which takes in string (timestamp) 
rather than the HoodieInstant. 



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