mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
fix(ext/http): explicitly close resource after reading (#14471)
This commit is contained in:
parent
253fbf9d2a
commit
fb390c5701
2 changed files with 1 additions and 1 deletions
|
@ -871,7 +871,6 @@ Deno.test(
|
|||
await respondWith(new Response(f.readable, { status: 200 }));
|
||||
httpConn.close();
|
||||
listener.close();
|
||||
f.close();
|
||||
})();
|
||||
const resp = await fetch("http://127.0.0.1:4503/");
|
||||
const body = await resp.arrayBuffer();
|
||||
|
|
|
@ -281,6 +281,7 @@
|
|||
streamRid,
|
||||
resourceRid,
|
||||
);
|
||||
core.tryClose(resourceRid);
|
||||
readableStreamClose(respBody); // Release JS lock.
|
||||
} catch (error) {
|
||||
const connError = httpConn[connErrorSymbol];
|
||||
|
|
Loading…
Reference in a new issue