mirror of https://github.com/apache/kafka.git
MINOR: Disable FetchFromFollowerIntegrationTest.testRackAwareRangeAssignor (#14876)
`FetchFromFollowerIntegrationTest.testRackAwareRangeAssignor` is extremely flaky and we have never been able to fix it. This patch disables it until we find a solution to make it reliable with https://issues.apache.org/jira/browse/KAFKA-15020. Reviewers: Stanislav Kozlovski <stanislav@confluent.io>
This commit is contained in:
parent
db308a9fe5
commit
5fdfb3afaf
|
|
@ -26,7 +26,7 @@ import org.apache.kafka.common.protocol.{ApiKeys, Errors}
|
|||
import org.apache.kafka.common.requests.FetchResponse
|
||||
import org.apache.kafka.common.serialization.ByteArrayDeserializer
|
||||
import org.junit.jupiter.api.Assertions.{assertEquals, assertTrue}
|
||||
import org.junit.jupiter.api.Timeout
|
||||
import org.junit.jupiter.api.{Disabled, Timeout}
|
||||
import org.junit.jupiter.params.ParameterizedTest
|
||||
import org.junit.jupiter.params.provider.ValueSource
|
||||
|
||||
|
|
@ -179,6 +179,7 @@ class FetchFromFollowerIntegrationTest extends BaseFetchRequestTest {
|
|||
}
|
||||
}
|
||||
|
||||
@Disabled
|
||||
@ParameterizedTest(name = TestInfoUtils.TestWithParameterizedQuorumName)
|
||||
@ValueSource(strings = Array("zk", "kraft"))
|
||||
def testRackAwareRangeAssignor(quorum: String): Unit = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue