chore: fix benchmarks (#18863)

This commit is contained in:
David Sherret 2023-04-26 15:09:28 -04:00 committed by GitHub
parent 77e25a656e
commit c2f5c09692
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,4 +22,4 @@ function handler(request) {
return response;
}
serve(handler, { port: parseInt(port), hostname: "0.0.0.0" });
serve({ port: parseInt(port), hostname: "0.0.0.0" }, handler);