From b3e88e0681248631b4bf8e4d9cd2e4d2c651f333 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 9 Feb 2023 22:00:23 -0500 Subject: refactor: deno_graph 0.43 upgrade (#17692) --- cli/bench/http/deno_http_flash_ops_spawn.js | 1 + cli/bench/http/deno_http_flash_spawn.js | 1 + 2 files changed, 2 insertions(+) (limited to 'cli/bench') diff --git a/cli/bench/http/deno_http_flash_ops_spawn.js b/cli/bench/http/deno_http_flash_ops_spawn.js index b9d11462f..a873e264d 100644 --- a/cli/bench/http/deno_http_flash_ops_spawn.js +++ b/cli/bench/http/deno_http_flash_ops_spawn.js @@ -10,6 +10,7 @@ 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]], }); 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]], }); -- cgit v1.2.3