mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
fix(ext/web/streams): resolve cancelPromise in ReadableStreamTee (#16266)
This commit is contained in:
parent
17271532d4
commit
50c7b89369
2 changed files with 9 additions and 3 deletions
|
@ -2675,7 +2675,9 @@
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
cancelPromise.resolve(undefined);
|
if (canceled1 === false || canceled2 === false) {
|
||||||
|
cancelPromise.resolve(undefined);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
errorSteps() {
|
errorSteps() {
|
||||||
reading = false;
|
reading = false;
|
||||||
|
|
|
@ -1336,8 +1336,12 @@
|
||||||
"patched-global.any.worker.html": true,
|
"patched-global.any.worker.html": true,
|
||||||
"reentrant-strategies.any.html": true,
|
"reentrant-strategies.any.html": true,
|
||||||
"reentrant-strategies.any.worker.html": true,
|
"reentrant-strategies.any.worker.html": true,
|
||||||
"tee.any.html": false,
|
"tee.any.html": [
|
||||||
"tee.any.worker.html": false,
|
"ReadableStream teeing: enqueue() and close() while both branches are pulling"
|
||||||
|
],
|
||||||
|
"tee.any.worker.html": [
|
||||||
|
"ReadableStream teeing: enqueue() and close() while both branches are pulling"
|
||||||
|
],
|
||||||
"templated.any.html": true,
|
"templated.any.html": true,
|
||||||
"templated.any.worker.html": true
|
"templated.any.worker.html": true
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue