This is an automated email from the ASF dual-hosted git repository.
davidarthur pushed a commit to branch 2.3
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/2.3 by this push:
new ea56cfc Minor: fix a few flaky test failures
ea56cfc is described below
commit ea56cfc3a9b96de3d194e7d13ef8c3af0961cef4
Author: David Arthur <[email protected]>
AuthorDate: Wed Oct 2 10:29:25 2019 -0400
Minor: fix a few flaky test failures
---
.../java/org/apache/kafka/clients/producer/KafkaProducerTest.java | 2 +-
.../test/scala/unit/kafka/controller/ControllerIntegrationTest.scala | 2 +-
core/src/test/scala/unit/kafka/network/SocketServerTest.scala | 5 +++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git
a/clients/src/test/java/org/apache/kafka/clients/producer/KafkaProducerTest.java
b/clients/src/test/java/org/apache/kafka/clients/producer/KafkaProducerTest.java
index 170b75e..231f209 100644
---
a/clients/src/test/java/org/apache/kafka/clients/producer/KafkaProducerTest.java
+++
b/clients/src/test/java/org/apache/kafka/clients/producer/KafkaProducerTest.java
@@ -866,7 +866,7 @@ public class KafkaProducerTest {
assertionDoneLatch.await();
}
- @Test(timeout = 5000)
+ @Test
public void testCloseIsForcedOnPendingAddOffsetRequest() throws
InterruptedException {
Map<String, Object> configs = new HashMap<>();
configs.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9000");
diff --git
a/core/src/test/scala/unit/kafka/controller/ControllerIntegrationTest.scala
b/core/src/test/scala/unit/kafka/controller/ControllerIntegrationTest.scala
index d57d78e..c0289b7 100644
--- a/core/src/test/scala/unit/kafka/controller/ControllerIntegrationTest.scala
+++ b/core/src/test/scala/unit/kafka/controller/ControllerIntegrationTest.scala
@@ -88,7 +88,7 @@ class ControllerIntegrationTest extends ZooKeeperTestHarness {
@Test
def testMetadataPropagationOnControlPlane(): Unit = {
- servers = makeServers(1, listeners =
Some("PLAINTEXT://localhost:0,CONTROLLER://localhost:5000"),
listenerSecurityProtocolMap = Some("PLAINTEXT:PLAINTEXT,CONTROLLER:PLAINTEXT"),
+ servers = makeServers(1, listeners =
Some("PLAINTEXT://localhost:0,CONTROLLER://localhost:0"),
listenerSecurityProtocolMap = Some("PLAINTEXT:PLAINTEXT,CONTROLLER:PLAINTEXT"),
controlPlaneListenerName = Some("CONTROLLER"))
TestUtils.waitUntilBrokerMetadataIsPropagated(servers)
val controlPlaneMetricMap = mutable.Map[String, KafkaMetric]()
diff --git a/core/src/test/scala/unit/kafka/network/SocketServerTest.scala
b/core/src/test/scala/unit/kafka/network/SocketServerTest.scala
index 0a8ce1d..1215aef 100644
--- a/core/src/test/scala/unit/kafka/network/SocketServerTest.scala
+++ b/core/src/test/scala/unit/kafka/network/SocketServerTest.scala
@@ -192,12 +192,13 @@ class SocketServerTest {
def testControlPlaneRequest(): Unit = {
val testProps = new Properties
testProps ++= props
- testProps.put("listeners",
"PLAINTEXT://localhost:0,CONTROLLER://localhost:5000")
+ testProps.put("listeners",
"PLAINTEXT://localhost:0,CONTROLLER://localhost:0")
testProps.put("listener.security.protocol.map",
"PLAINTEXT:PLAINTEXT,CONTROLLER:PLAINTEXT")
testProps.put("control.plane.listener.name", "CONTROLLER")
val config = KafkaConfig.fromProps(testProps)
withTestableServer(config, { testableServer =>
- val socket = connect(testableServer,
config.controlPlaneListenerName.get, localAddr = InetAddress.getLocalHost, port
= 5000)
+ val socket = connect(testableServer, config.controlPlaneListenerName.get,
+ localAddr = InetAddress.getLocalHost)
sendAndReceiveControllerRequest(socket, testableServer)
})
}