cmccabe commented on code in PR #13114: URL: https://github.com/apache/kafka/pull/13114#discussion_r1120962516
########## core/src/main/scala/kafka/server/metadata/BrokerMetadataPublisher.scala: ########## @@ -221,6 +223,21 @@ class BrokerMetadataPublisher( s"quotas in ${deltaName}", t) } + // Apply changes to SCRAM credentials. + Option(delta.scramDelta()).foreach { scramDelta => Review Comment: I think we should split out this code for applying the SCRAM stuff into a separate `MetadataPublisher`, as we did with `DynamicConfigPublisher`. Then the controller can run it as well. But we can do that in a follow-on change. -- 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