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
Right now ThreadPool's schedule and scheduleWithFixedDelay schedule a command to run without any thread context. As of #17077 it will be possible to intentionally schedule a command in the current thread context. We should make that behavior the default behavior.
The text was updated successfully, but these errors were encountered:
Changes ThreadPool's schedule method to run the schedule task in the context of the thread
that scheduled the task.
This is the more sensible default for this method, and eliminates a range of bugs where the
current thread context is mistakenly dropped.
Closes#17143
Changes ThreadPool's schedule method to run the schedule task in the context of the thread
that scheduled the task.
This is the more sensible default for this method, and eliminates a range of bugs where the
current thread context is mistakenly dropped.
Closes#17143
Right now
ThreadPool
'sschedule
andscheduleWithFixedDelay
schedule a command to run without any thread context. As of #17077 it will be possible to intentionally schedule a command in the current thread context. We should make that behavior the default behavior.The text was updated successfully, but these errors were encountered: