mimaison commented on code in PR #15038:
URL: https://github.com/apache/kafka/pull/15038#discussion_r1444747617
##########
core/src/test/scala/unit/kafka/server/ControllerMutationQuotaTest.scala:
##########
@@ -139,20 +143,23 @@ class ControllerMutationQuotaTest extends BaseRequestTest
{
val (_, errors) = createTopics(Map("topic" -> 1),
StrictDeleteTopicsRequestVersion)
assertEquals(Set(Errors.NONE), errors.values.toSet)
- // Metric must be there with the correct config
- waitQuotaMetric(principal.getName, ControllerMutationRate)
+ if (!isKRaftTest()) {
Review Comment:
Why are we only doing these checks in ZK mode? Isn't the controller mutation
quota also working in KRaft mode?
--
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]