This is an automated email from the ASF dual-hosted git repository.
jmclean pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new a6d76a3896 [#8666] fix SetFilesetProperty output to show fileset name
(not schema) (#8693)
a6d76a3896 is described below
commit a6d76a3896482044b41a933d44591aecbe19c305
Author: bittu9975 <[email protected]>
AuthorDate: Tue Sep 30 13:30:49 2025 +0530
[#8666] fix SetFilesetProperty output to show fileset name (not schema)
(#8693)
Fix CLI SetFilesetProperty output to display the fileset name instead of
the schema name.
Ensures the confirmation message correctly reflects the resource being
updated.
---
.../main/java/org/apache/gravitino/cli/commands/SetFilesetProperty.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/clients/cli/src/main/java/org/apache/gravitino/cli/commands/SetFilesetProperty.java
b/clients/cli/src/main/java/org/apache/gravitino/cli/commands/SetFilesetProperty.java
index 99a771900f..390ea2b6b1 100644
---
a/clients/cli/src/main/java/org/apache/gravitino/cli/commands/SetFilesetProperty.java
+++
b/clients/cli/src/main/java/org/apache/gravitino/cli/commands/SetFilesetProperty.java
@@ -93,7 +93,7 @@ public class SetFilesetProperty extends Command {
exitWithError(exp.getMessage());
}
- printInformation(schema + " property set.");
+ printInformation(fileset + " property set.");
}
@Override