The TcpNetServerConnectionFactory.run()
must not block on the loop forever
#8852
Labels
Milestone
TcpNetServerConnectionFactory.run()
must not block on the loop forever
#8852
The current logic is like:
This blocks a thread in the executor forever.
Fix it to
while (isActive()) {
to properly react to thestop()
call.Otherwise with an internal executor we wait on the:
Which does not happen if we exit from the loop normally.
The text was updated successfully, but these errors were encountered: