dongjinleekr commented on a change in pull request #11430: URL: https://github.com/apache/kafka/pull/11430#discussion_r736269591
########## File path: clients/src/main/java/org/apache/kafka/common/security/JaasConfig.java ########## @@ -50,12 +50,24 @@ private final List<AppConfigurationEntry> configEntries; public JaasConfig(String loginContextName, String jaasConfigParams) { + // All characters except space, comment, quote, equal and semicolon are considered to be alphabetic. + // That is, numbers or symbols like '@' now can be a part of a word. + // All bytes from 0 to ' ' {@code ' '} are considered to be whitespace. + // '/' {@code '/'} is a comment character. '//', '/*', '*/' are also allowed. Review comment: oh yes, I was a little bit confused; what I meant was ascci code 32 and 47, not `{@code ' '}` or `{@code '/'}`. -- 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