Fix waitOnServerToStart(..) return statement to correctly return 'connected.get()'.

This commit is contained in:
John Blum
2018-08-14 18:19:31 -07:00
parent 8bd76409f8
commit 7718b8d8b2

View File

@@ -254,7 +254,7 @@ public abstract class ClientServerIntegrationTestsSupport extends IntegrationTes
SocketUtils.close(socket);
}
return !connected.get();
return connected.get();
}, duration);
}