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 would give a nicer message than the current The user aborted a request. which is confusing when in fact it is a timeout:
AbortError failed with type: aborted; message: The user aborted a request.
Retrying in 129 milliseconds, attempt 1 error: AbortError, The user aborted a request.
Unfortunately the abort-controller library we use doesn't support it yet, neither do the other AbortController libraries on npm that I found (at this time).
The text was updated successfully, but these errors were encountered:
This would give a nicer message than the current
The user aborted a request.
which is confusing when in fact it is a timeout:MDN doc of AbortSignal.timeout(): https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/timeout
WhatWG spec: https://dom.spec.whatwg.org/#interface-AbortSignal
Available in nodejs 16.14+: https://nodejs.org/dist/latest-v16.x/docs/api/globals.html#class-abortcontroller
Unfortunately the abort-controller library we use doesn't support it yet, neither do the other AbortController libraries on npm that I found (at this time).
The text was updated successfully, but these errors were encountered: