summaryrefslogtreecommitdiff
path: root/cli/bench/http/deno_http_flash_ops_spawn.js
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-02-22 11:14:53 -0500
committerGitHub <noreply@github.com>2023-02-22 16:14:53 +0000
commitb4b718d6aefd7c234b8d632d0d67293a7ab9e22b (patch)
treee4200943190b60c7cdf303203dbe7c60a53dc5be /cli/bench/http/deno_http_flash_ops_spawn.js
parenta2d942a778879282f9dbd0a7ad3bfedce9100d55 (diff)
fix(lint): revert no-deprecated-api for Deno.run (#17880)
Diffstat (limited to 'cli/bench/http/deno_http_flash_ops_spawn.js')
-rw-r--r--cli/bench/http/deno_http_flash_ops_spawn.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/bench/http/deno_http_flash_ops_spawn.js b/cli/bench/http/deno_http_flash_ops_spawn.js
index a873e264d..b9d11462f 100644
--- a/cli/bench/http/deno_http_flash_ops_spawn.js
+++ b/cli/bench/http/deno_http_flash_ops_spawn.js
@@ -10,7 +10,6 @@ const path = new URL("./deno_http_flash_ops.js", import.meta.url).pathname;
const cpus = navigator.hardwareConcurrency / 2;
const processes = new Array(cpus);
for (let i = 0; i < cpus; i++) {
- // deno-lint-ignore no-deprecated-deno-api
const proc = Deno.run({
cmd: [executable, "run", "-A", "--unstable", path, Deno.args[0]],
});