diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-04-26 23:59:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-26 21:59:32 +0000 |
commit | 7415aff983333ae45badfd43c3db35d39ad37b79 (patch) | |
tree | a6bea2f24ba181b4dcaec0e72345bc5e0057f7a7 /cli/bench/http/deno_http_serve.js | |
parent | 3d8a4d3b81e107bbb152ad69047f64d16ca800f3 (diff) |
bench: fix more benchmarks (#18864)
Diffstat (limited to 'cli/bench/http/deno_http_serve.js')
-rw-r--r-- | cli/bench/http/deno_http_serve.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/bench/http/deno_http_serve.js b/cli/bench/http/deno_http_serve.js index a0db62630..989dc82e8 100644 --- a/cli/bench/http/deno_http_serve.js +++ b/cli/bench/http/deno_http_serve.js @@ -8,4 +8,4 @@ function handler() { return new Response("Hello World"); } -serve(handler, { hostname, port, reusePort: true }); +serve({ hostname, port, reusePort: true }, handler); |