squah-confluent commented on code in PR #21720:
URL: https://github.com/apache/kafka/pull/21720#discussion_r2939667179
##########
core/src/test/scala/integration/kafka/api/AuthorizerIntegrationTest.scala:
##########
@@ -3178,7 +3178,9 @@ class AuthorizerIntegrationTest extends
AbstractAuthorizerIntegrationTest {
// in the broker and client can lead to other issues. This needs to be
fixed properly by using
// member permissions while computing assignments.
var member2Response =
sendAndReceiveFirstRegexHeartbeat("memberWithLimitedAccess", listenerName)
- member1Response = sendAndReceiveRegexHeartbeat(member1Response,
interBrokerListenerName, Some(1))
+ TestUtils.retry(15000) {
+ member1Response = sendAndReceiveRegexHeartbeat(member1Response,
interBrokerListenerName, Some(1))
+ }
Review Comment:
Member 1's assignment won't be immediately shrunk to 1 partition when
assignment batching is enabled.
--
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]