hdygxsj commented on code in PR #7450: URL: https://github.com/apache/gravitino/pull/7450#discussion_r2174795002
########## core/src/main/java/org/apache/gravitino/Configs.java: ########## @@ -285,6 +285,13 @@ private Configs() {} .booleanConf() .createWithDefault(false); + public static final ConfigEntry<String> AUTHORIZATION_IMPL = + new ConfigBuilder("gravitino.authorization.impl") + .doc("Metadata authorization implement") Review Comment: fixed ########## core/src/main/java/org/apache/gravitino/Configs.java: ########## @@ -285,6 +285,13 @@ private Configs() {} .booleanConf() .createWithDefault(false); + public static final ConfigEntry<String> AUTHORIZATION_IMPL = + new ConfigBuilder("gravitino.authorization.impl") + .doc("Metadata authorization implement") + .version(ConfigConstants.VERSION_1_0_0) + .stringConf() + .createWithDefault("PassThrough"); Review Comment: fixed -- 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: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org