diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-02-09 22:00:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 22:00:23 -0500 |
commit | b3e88e0681248631b4bf8e4d9cd2e4d2c651f333 (patch) | |
tree | cd526bb63ef712e21aef24ff77703727791f48d5 /cli/bench/http/deno_http_flash_spawn.js | |
parent | 8da235adced567839912344ba092fb445683485a (diff) |
refactor: deno_graph 0.43 upgrade (#17692)
Diffstat (limited to 'cli/bench/http/deno_http_flash_spawn.js')
-rw-r--r-- | cli/bench/http/deno_http_flash_spawn.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/bench/http/deno_http_flash_spawn.js b/cli/bench/http/deno_http_flash_spawn.js index e47acffc5..e5ad73a2e 100644 --- a/cli/bench/http/deno_http_flash_spawn.js +++ b/cli/bench/http/deno_http_flash_spawn.js @@ -10,6 +10,7 @@ const path = new URL("./deno_http_flash.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]], }); |