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
Repeated invocation of CancellableContinuation.resumeWithException forwards it to "uncaught exception handler" but there is nothing in stack trace to help figuring the root cause of the problem (second invocation of resumeWithException). This shall be fixed by wrapping exception before forwarding it to uncaught exception handler.
The text was updated successfully, but these errors were encountered:
Would this also fix the issue described here where calling resumeWithException with an Exception created on a different thread than on which the suspending call was originally made resumes the coroutine with an Exception not containing the call to the suspending function?
Repeated invocation of
CancellableContinuation.resumeWithException
forwards it to "uncaught exception handler" but there is nothing in stack trace to help figuring the root cause of the problem (second invocation ofresumeWithException
). This shall be fixed by wrapping exception before forwarding it to uncaught exception handler.The text was updated successfully, but these errors were encountered: