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
The timer should be stopped before shutting down the EventLoopGroups to enforce no active timer jobs. Exceptions occur in a case of a concurrent shutdown while timer tasks are executed because the event loop is not active anymore, but the timer tries to trigger jobs.
The text was updated successfully, but these errors were encountered:
Motivation: Active timer tasks can request interaction with a EventLoopGroup that is signalled for shutdown. Tasks in that state are likely to fail and cause exceptions which are logged.
Result: The timer is stopped before the EventLoopGroups are shut down so there are no more active timer tasks when the EventLoops are stopped
Motivation: Active timer tasks can request interaction with a EventLoopGroup that is signalled for shutdown. Tasks in that state are likely to fail and cause exceptions which are logged.
Result: The timer is stopped before the EventLoopGroups are shut down so there are no more active timer tasks when the EventLoops are stopped
Motivation: Active timer tasks can request interaction with a EventLoopGroup that is signalled for shutdown. Tasks in that state are likely to fail and cause exceptions which are logged.
Result: The timer is stopped before the EventLoopGroups are shut down so there are no more active timer tasks when the EventLoops are stopped
The timer should be stopped before shutting down the
EventLoopGroup
s to enforce no active timer jobs. Exceptions occur in a case of a concurrent shutdown while timer tasks are executed because the event loop is not active anymore, but the timer tries to trigger jobs.The text was updated successfully, but these errors were encountered: