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_https.js | |
parent | 3d8a4d3b81e107bbb152ad69047f64d16ca800f3 (diff) |
bench: fix more benchmarks (#18864)
Diffstat (limited to 'cli/bench/http/deno_http_serve_https.js')
-rw-r--r-- | cli/bench/http/deno_http_serve_https.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/bench/http/deno_http_serve_https.js b/cli/bench/http/deno_http_serve_https.js index cea659e09..17b403394 100644 --- a/cli/bench/http/deno_http_serve_https.js +++ b/cli/bench/http/deno_http_serve_https.js @@ -15,4 +15,4 @@ function handler() { return new Response("Hello World"); } -serve(handler, { hostname, port, reusePort: true, cert: CERT, key: KEY }); +serve({ hostname, port, reusePort: true, cert: CERT, key: KEY }, handler); |