In what version(s) of Spring Integration are you seeing this issue?
For example:
5.3.8.RELEASE
Describe the bug
You corrected TcpNioClientConnectionFactory.java from
it was 50 and you changed it to 5.
Thread.sleep(5); // NOSONAR Magic #
connected = socketChannel.finishConnect();
timeLeft -= 5; //
but it was not ropogated to 5.3.x as patch.
it need it since current connect function causes us substential delay (50 ms per connection)
10x,
David