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
This is a rare case of a race condition that can happen during the execution of any connection function. If the cancellation signal is emitted while the current async op is complete, but the handler hasn't been called yet (is queued), the cancellation has no effect and the operation continues.
This can be fixed by checking the composed op's cancellation state in async_run_algo_impl.
The text was updated successfully, but these errors were encountered:
This is a rare case of a race condition that can happen during the execution of any connection function. If the cancellation signal is emitted while the current async op is complete, but the handler hasn't been called yet (is queued), the cancellation has no effect and the operation continues.
This can be fixed by checking the composed op's cancellation state in
async_run_algo_impl
.The text was updated successfully, but these errors were encountered: