kirktrue commented on PR #14670:
URL: https://github.com/apache/kafka/pull/14670#issuecomment-1805940138
Re-triggered a build due to the abundance of seemingly unrelated test
failures.
For example, the first line of this test in `ClusterConnectionStatesTest` is
failing across all builds because `localhost` is resolving to more than one IP
address:
```java
@Test
public void testSingleIP() throws UnknownHostException {
assertEquals(1, ClientUtils.resolve("localhost",
singleIPHostResolver).size());
connectionStates.connecting(nodeId1, time.milliseconds(), "localhost");
InetAddress currAddress = connectionStates.currentAddress(nodeId1);
connectionStates.connecting(nodeId1, time.milliseconds(), "localhost");
assertSame(currAddress, connectionStates.currentAddress(nodeId1));
}
```
--
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]