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
Future.await should interrupt the current thread when the worker executor is closed.
Motivation:
Future.await incorrectly performs a no-op when the worker executor is closed (returns a null latch), which reports a failure that might not exist.
Changes:
When the worker executor returns null, throw an interrupted exception.
0 commit comments