showuon commented on code in PR #18519: URL: https://github.com/apache/kafka/pull/18519#discussion_r1918333787
########## clients/src/main/java/org/apache/kafka/common/security/oauthbearer/internals/secured/ConfigurationUtils.java: ########## @@ -228,4 +233,16 @@ public <T> T get(String name) { return (T) configs.get(name); } + // make sure the url is in the "org.apache.kafka.sasl.oauthbearer.allowed.url" system property + public void throwIfURLIsNotAllowed(String urlConfig) { + Set<String> allowedLoginModuleList = Arrays.stream( + System.getProperty(ALLOWED_SASL_OAUTHBEARER_URL_CONFIG, "").split(",")) Review Comment: As discussed offline, we'll default to empty list in 4.0. -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org