You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ClientBootstrap.connectWithRetry(...) should check to see if the bootstrap's event loop group is still available for scheduling as it may have been shut down (e.g. by an int signal) between attempts. If the event loop is dead, no further retries should be attempted. Update documentation to make this clear.
This is to avoid the error:
ERROR: Cannot schedule tasks on an EventLoop that has already shut down. This will be upgraded to a forced crash in future SwiftNIO versions.
(plus backtrace when not compiled for release)
The text was updated successfully, but these errors were encountered:
ClientBootstrap.connectWithRetry(...)
should check to see if the bootstrap's event loop group is still available for scheduling as it may have been shut down (e.g. by an int signal) between attempts. If the event loop is dead, no further retries should be attempted. Update documentation to make this clear.This is to avoid the error:
(plus backtrace when not compiled for release)
The text was updated successfully, but these errors were encountered: