diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-06-06 15:37:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-06 15:37:17 +0200 |
commit | 1fb2e23a6747a4f774e63639eb522cb34aadbf42 (patch) | |
tree | 4cf18f9519b64ae923aa99ad9ba3a0bedebf6b5b /runtime/js | |
parent | 3f9187c366be362a219274ded5be9e679b96af98 (diff) |
feat(fetch): implement abort (#10863)
This commit introduces fetch aborting via an AbortSignal.
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/40_http.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/40_http.js b/runtime/js/40_http.js index d4b658314..63f64545f 100644 --- a/runtime/js/40_http.js +++ b/runtime/js/40_http.js @@ -72,7 +72,7 @@ headersList, body !== null ? new InnerBody(body) : null, ); - const request = fromInnerRequest(innerRequest, "immutable"); + const request = fromInnerRequest(innerRequest, null, "immutable"); const respondWith = createRespondWith(this, responseSenderRid); |