Guosmilesmile commented on code in PR #15459:
URL: https://github.com/apache/iceberg/pull/15459#discussion_r2887699879


##########
flink/v2.1/flink/src/main/java/org/apache/iceberg/flink/maintenance/operator/TriggerManagerOperator.java:
##########
@@ -252,7 +252,10 @@ public void close() throws Exception {
 
   @VisibleForTesting
   void handleLockRelease(LockReleaseEvent event) {
-    Preconditions.checkArgument(lockTime != null, "Lock time is null, Can't 
release lock");
+    if (lockTime == null) {
+      LOG.warn("Lock time is null, Can't release lock");
+      return;
+    }

Review Comment:
   Thanks for pointing it out, I have change the way



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to