Skip to content

Commit

Permalink
Merge branch 'feat-quite-command' of https://github.com/abyss-lord/gr…
Browse files Browse the repository at this point in the history
…avitino into feat-quite-command
  • Loading branch information
justinmclean committed Jan 14, 2025
2 parents ae9eccc + 22023f3 commit c44da30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public class FilesetCommandHandler extends CommandHandler {
private final String metalake;
private final String catalog;
private final String schema;
private final boolean quiet;
private String fileset;
private final boolean quiet;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public MetalakeCommandHandler(
this.ignore = ignore;
this.quiet = quiet;
this.url = getUrl(line);
this.quiet = quiet;
}

/** Handles the command execution logic based on the provided command. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public TagCommandHandler(
this.quiet = quiet;
this.url = getUrl(line);
this.tags = line.getOptionValues(GravitinoOptions.TAG);
this.quiet = quiet;

if (tags != null) {
tags = Arrays.stream(tags).distinct().toArray(String[]::new);
Expand Down

0 comments on commit c44da30

Please sign in to comment.