summaryrefslogtreecommitdiff
path: root/cli/bench/http/deno_flash_send_file.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/http/deno_flash_send_file.js')
-rw-r--r--cli/bench/http/deno_flash_send_file.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/bench/http/deno_flash_send_file.js b/cli/bench/http/deno_flash_send_file.js
index 81e8c4991..db2ad7a82 100644
--- a/cli/bench/http/deno_flash_send_file.js
+++ b/cli/bench/http/deno_flash_send_file.js
@@ -6,9 +6,9 @@ const { serve } = Deno;
const path = new URL("../testdata/128k.bin", import.meta.url).pathname;
-function fetch() {
+function handler() {
const file = Deno.openSync(path);
return new Response(file.readable);
}
-serve({ fetch, hostname, port: Number(port) });
+serve(handler, { hostname, port: Number(port) });