We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I assume the following 2 fetch invocations should behave identically, i.e. both should throw a TimeoutError:
fetch
TimeoutError
A: Passing url and options directly to fetch():
fetch()
const resp = await fetch('https://httpbin.org/delay/5', { timeout: 1000 });
B: Passing url and options via Request instance to fetch():
Request
const req = new Request('https://httpbin.org/delay/5', { timeout: 1000 }); const resp = await fetch(req);
A throws a TimeoutError as expected. B OTOH ignores the timeout option and succeeds.
timeout
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I assume the following 2
fetch
invocations should behave identically, i.e. both should throw aTimeoutError
:A: Passing url and options directly to
fetch()
:B: Passing url and options via
Request
instance tofetch()
:A throws a
TimeoutError
as expected. B OTOH ignores thetimeout
option and succeeds.The text was updated successfully, but these errors were encountered: