In NioSocketAcceptor.java:
private boolean reuseAddress = true;
should be:
private boolean reuseAddress = false;
because that's the default expected behavior.
In NioSocketAcceptor.java:
private boolean reuseAddress = true;
should be:
private boolean reuseAddress = false;
because that's the default expected behavior.