From 3101abbb082b7a7c38a33ac84a4012a87c8b3358 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Thu, 30 Apr 2020 14:05:46 +0200 Subject: [PATCH] remove profiling code --- website/server/index.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/website/server/index.js b/website/server/index.js index a413daa498..832a06cc74 100644 --- a/website/server/index.js +++ b/website/server/index.js @@ -28,10 +28,6 @@ if (CORES !== 0 && cluster.isMaster && (IS_DEV || IS_PROD)) { // Fork workers. If config.json has WEB_CONCURRENCY=x, // use that - otherwise, use all cpus-1 (production) for (let i = 0; i < CORES; i += 1) { - cluster.setupMaster({ - exec: process.argv[1], - args: ['--interpreted-frames-native-stack', '--perf-basic-prof'], - }); cluster.fork(); }