This is an automated email from the ASF dual-hosted git repository. bschuchardt pushed a commit to branch support/1.12 in repository https://gitbox.apache.org/repos/asf/geode.git
commit 0f95d0b4fac88816c80204f7539784d9db88e56a Author: Bruce Schuchardt <[email protected]> AuthorDate: Fri Jun 26 14:30:26 2020 -0700 fixed compilation error in cherry-pick --- .../client/internal/locator/wan/LocatorMembershipListenerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geode-wan/src/test/java/org/apache/geode/cache/client/internal/locator/wan/LocatorMembershipListenerTest.java b/geode-wan/src/test/java/org/apache/geode/cache/client/internal/locator/wan/LocatorMembershipListenerTest.java index b2b3c14..fabb128 100644 --- a/geode-wan/src/test/java/org/apache/geode/cache/client/internal/locator/wan/LocatorMembershipListenerTest.java +++ b/geode-wan/src/test/java/org/apache/geode/cache/client/internal/locator/wan/LocatorMembershipListenerTest.java @@ -356,7 +356,7 @@ public class LocatorMembershipListenerTest { // The sendMessage loop in the listener will try to send 4 messages. Two to the remoteLocators // and two to the joiningLocator. The retry loop will try to send the messages again and // fail (4 more messages) and then it will succeed (4 more messages, for a total of 12). - verify(tcpClient, times(12)).requestToServer(isA(HostAndPort.class), + verify(tcpClient, times(12)).requestToServer(isA(InetSocketAddress.class), isA(LocatorJoinMessage.class), isA(Integer.class), isA(Boolean.class)); }
