-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Closed
Labels
ext/fetchrelated to the ext/fetchrelated to the ext/fetch
Description
Version: Deno 2.4.2
Reproduction
deno run -A npm:create-solid@latest
select SolidStart, Yes for TypeScript and basic for the template
then install dependencies, build with deno-server preset:
import { defineConfig } from "@solidjs/start/config";
export default defineConfig({ server: { preset: "deno-server" } });after running the server with deno task --config .output/deno.json start, run this code:
for (let index = 0; index < 10_000_000; index++) {
const a = new AbortController();
await fetch("http://localhost:3000", { signal: a.signal });
a.abort();
}you'll see the server crash with the error.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
ext/fetchrelated to the ext/fetchrelated to the ext/fetch