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 cancellation mechanism in connection::cancel() is currently quite rudimentary, and subject to race conditions. If cancellation is called after an operation has completed, but before its handler is called, connection::cancel() does nothing. The correct way to handle this is using per-operation cancel.