shaofengshi commented on code in PR #5497:
URL: https://github.com/apache/gravitino/pull/5497#discussion_r1836306037
##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/DeleteUser.java:
##########
@@ -28,26 +29,34 @@ public class DeleteUser extends Command {
protected final String metalake;
protected final String user;
+ protected final boolean force;
/**
* Delete a user.
*
* @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 force Force operation.
* @param metalake The name of the metalake.
* @param user The name of the user.
*/
- public DeleteUser(String url, boolean ignoreVersions, String metalake,
String user) {
+ public DeleteUser(
+ String url, boolean ignoreVersions, boolean force, String metalake,
String user) {
super(url, ignoreVersions);
+ this.force = force;
this.metalake = metalake;
this.user = user;
}
/** Delete a user. */
- @Override
public void handle() {
Review Comment:
here also
--
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]