adutra commented on code in PR #11844: URL: https://github.com/apache/iceberg/pull/11844#discussion_r1898887643
########## core/src/main/java/org/apache/iceberg/rest/auth/AuthManagers.java: ########## @@ -42,6 +57,9 @@ public static AuthManager loadAuthManager(String name, Map<String, String> prope case AuthProperties.AUTH_TYPE_BASIC: impl = AuthProperties.AUTH_MANAGER_IMPL_BASIC; break; + case AuthProperties.AUTH_TYPE_OAUTH2: + impl = AuthProperties.AUTH_MANAGER_IMPL_OAUTH2; + break; default: impl = authType; Review Comment: That's precisely the intent here; if you have a custom manager, you would activate it with `rest.auth.type=my.custom.AuthManager`. Is that OK for you? -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org