As mentioned in #3549, TestingUtilities.waitStopListening(serverConnectionFactory, delayArg)
actually waits for delayArg * 2
milliseconds which is inconsistent with the JavaDocs. I think we should revise this method and increase delayArg
when calling it.
For instance TestingUtilities.waitStopListening(server1, 10000L)
to TestingUtilities.waitStopListening(server1, 20000L)