jerqi commented on code in PR #9780:
URL: https://github.com/apache/gravitino/pull/9780#discussion_r2734575727
##########
server-common/src/main/java/org/apache/gravitino/server/authorization/GravitinoAuthorizerProvider.java:
##########
@@ -55,6 +55,27 @@ public void initialize(ServerConfig serverConfig) {
gravitinoAuthorizer =
(GravitinoAuthorizer)
Class.forName(authorizationImpl).getDeclaredConstructor().newInstance();
+
+ // Special handling for FallbackAuthorizer
+ if (gravitinoAuthorizer instanceof FallbackAuthorizer) {
Review Comment:
we can set this in the FallbackAuthorizer `initialize` method.
--
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]