danny0405 commented on code in PR #13229:
URL: https://github.com/apache/hudi/pull/13229#discussion_r2076609818
##########
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:
why change this? An inflight instant also works 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]