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
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Some of these tests have been failing in CI. While unwieldy in general, the specific issue is that when the tests are shutting down, they cancel any tasks that haven't yet completed, but then simply wait on the tasks to complete. If the task hadn't yet started, the cancellation request would cause the task to end as Canceled, which would cause the Wait to throw. The fix is simply to catch and ignore the resulting OperationCanceledException.
0 commit comments