justinmclean commented on code in PR #5618:
URL: https://github.com/apache/gravitino/pull/5618#discussion_r1853314116
##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/AllMetalakeDetails.java:
##########
@@ -32,9 +32,12 @@ public class AllMetalakeDetails extends Command {
*
* @param url The URL of the Gravitino server.
* @param ignoreVersions If true don't check the client/server versions
match.
+ * @param authentication Authentication type i.e. "simple"
+ * @param userName User name for simple authentication.
*/
- public AllMetalakeDetails(String url, boolean ignoreVersions) {
- super(url, ignoreVersions);
+ public AllMetalakeDetails(
+ String url, boolean ignoreVersions, String authentication, String
userName) {
+ super(url, ignoreVersions, authentication, userName);
Review Comment:
Again this is from another PR that has not been merged yet.
##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/AuditCommand.java:
##########
@@ -25,9 +25,11 @@ public abstract class AuditCommand extends Command {
/**
* @param url The URL of the Gravitino server.
* @param ignoreVersions If true don't check the client/server versions
match.
+ * @param authentication Authentication type i.e. "simple"
+ * @param userName User name for simple authentication.
*/
- public AuditCommand(String url, boolean ignoreVersions) {
- super(url, ignoreVersions);
+ public AuditCommand(String url, boolean ignoreVersions, String
authentication, String userName) {
+ super(url, ignoreVersions, authentication, userName);
Review Comment:
same again
--
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]