From 2a937d7064a7c2809a3f81c21b01e07cffe36c76 Mon Sep 17 00:00:00 2001 From: Ev Haus Date: Fri, 15 Mar 2024 23:32:36 -0700 Subject: [PATCH] Try with 2 replicas --- setup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.js b/setup.js index be70145..6c72594 100644 --- a/setup.js +++ b/setup.js @@ -14,7 +14,7 @@ const main = async () => { const benchmarks = await getBenchmarks(BENCHMARKS_DIR); benchmarks.forEach((benchmark) => { const BENCHMARK_DIR = path.join(BENCHMARKS_DIR, benchmark, 'tests'); - Array.from(new Array(10)).forEach((_, i) => { + Array.from(new Array(2)).forEach((_, i) => { const REPLICA_DIR = path.join(BENCHMARK_DIR, `replica${i + 1}`); execSync(`rm -rf ${REPLICA_DIR}`) execSync(`cp -r ${path.join(BENCHMARK_DIR, 'original')} ${REPLICA_DIR}`)