justinmclean commented on code in PR #6104:
URL: https://github.com/apache/gravitino/pull/6104#discussion_r1903630275
##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/SetCatalogProperty.java:
##########
@@ -74,4 +74,10 @@ public void handle() {
System.out.println(catalog + " property set.");
}
+
+ @Override
+ public Command validate() {
+ checkProperty(property, value);
+ return this;
+ }
Review Comment:
You could have checkProperty return this and change this to just `return
checkProperty(property, value);` but either is probably fine
--
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]