justinmclean commented on code in PR #5497:
URL: https://github.com/apache/gravitino/pull/5497#discussion_r1837262307


##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/DeleteTag.java:
##########
@@ -28,26 +29,32 @@ public class DeleteTag extends Command {
 
   protected final String metalake;
   protected final String tag;
+  protected final boolean force;
 
   /**
    * Delete a tag.
    *
    * @param url The URL of the Gravitino server.
    * @param ignoreVersions If true don't check the client/server versions 
match.
+   * @param force Force operation.
    * @param metalake The name of the metalake.
    * @param tag The name of the tag.
    */
-  public DeleteTag(String url, boolean ignoreVersions, String metalake, String 
tag) {
+  public DeleteTag(String url, boolean ignoreVersions, boolean force, String 
metalake, String tag) {
     super(url, ignoreVersions);
+    this.force = force;
     this.metalake = metalake;
     this.tag = tag;
   }
 
   /** Delete a catalog. */
-  @Override
   public void handle() {

Review Comment:
   Was no need - again it was a merge issue. Fixed.



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