kamalcph commented on PR #21125: URL: https://github.com/apache/kafka/pull/21125#issuecomment-3664787935
It is good to document this change for users. When running from CLI, we have to include a trailing slash to escape the dollar: The below one will change the logger level in ClientQuotaManager class not in ThrottledChannelReaper: ``` sh kafka-configs.sh --bootstrap-server localhost:9092 --broker-logger 0 --add-config org.apache.kafka.server.quota.ClientQuotaManager$ThrottledChannelReaper=DEBUG --alter ``` Valid command: ``` sh kafka-configs.sh --bootstrap-server localhost:9092 --broker-logger 0 --add-config org.apache.kafka.server.quota.ClientQuotaManager\$ThrottledChannelReaper=DEBUG --alter ``` -- 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]
