summaryrefslogtreecommitdiff
path: root/cli/bench/testdata
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2022-08-24 00:08:56 +0200
committerGitHub <noreply@github.com>2022-08-24 00:08:56 +0200
commit4ef08a58dfbcf893f25fd59917aa946f455e85f2 (patch)
tree7b1e07869fd23f1ce65029ab3725b9ef054f7576 /cli/bench/testdata
parentf0993f413b86997674ea4bc6812af7d2c529ec96 (diff)
feat: update `Deno.serve` function signature (#15563)
This commit changes the `Deno.serve` function signature to be more versatile and easier to use. It is now a drop in replacement for std/http's `serve`. The input validation has also been reworked.
Diffstat (limited to 'cli/bench/testdata')
-rw-r--r--cli/bench/testdata/deno_upgrade_http.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/cli/bench/testdata/deno_upgrade_http.js b/cli/bench/testdata/deno_upgrade_http.js
index e3252ffd1..7274459c9 100644
--- a/cli/bench/testdata/deno_upgrade_http.js
+++ b/cli/bench/testdata/deno_upgrade_http.js
@@ -1,14 +1,10 @@
const { serve, upgradeHttp } = Deno;
const u8 = Deno.core.encode("HTTP/1.1 101 Switching Protocols\r\n\r\n");
-async function fetch(req) {
+async function handler(req) {
const [conn, _firstPacket] = upgradeHttp(req);
await conn.write(u8);
await conn.close();
}
-serve({
- fetch,
- hostname: "127.0.0.1",
- port: 9000,
-});
+serve(handler, { hostname: "127.0.0.1", port: 9000 });