chia7712 commented on code in PR #21131:
URL: https://github.com/apache/kafka/pull/21131#discussion_r2691369324
##########
server-common/src/main/java/org/apache/kafka/server/config/QuotaConfig.java:
##########
@@ -225,6 +225,14 @@ public static ConfigDef brokerQuotaConfigs() {
ConfigDef.Importance.MEDIUM,
QuotaConfig.REPLICA_ALTER_LOG_DIRS_IO_MAX_BYTES_PER_SECOND_DOC);
}
+ public static Set<String> brokerQuotaConfigsNames() {
+ return Set.of(
Review Comment:
How about using `brokerQuotaConfigs`?
```java
public static Set<String> brokerQuotaConfigsNames() {
return Set.copyOf(brokerQuotaConfigs().names());
}
```
--
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]