From 2c2ca100a4e40f29244c08d8c830379fdec107f0 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Thu, 30 May 2024 09:15:11 +0200 Subject: [PATCH] Lint out unnamed functions --- svr.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/svr.js b/svr.js index d1561d1..bb849f5 100644 --- a/svr.js +++ b/svr.js @@ -5506,7 +5506,7 @@ function start(init) { closedMaster = true; workersToFork = getWorkerCountToFork(); - forkWorkers(workersToFork, function() { + forkWorkers(workersToFork, function () { SVRJSInitialized = true; exiting = false; serverconsole.climessage("SVR.JS workers restarted."); @@ -5559,7 +5559,7 @@ function start(init) { // Cluster forking code if (cluster.isPrimary !== undefined && init) { workersToFork = getWorkerCountToFork(); - forkWorkers(workersToFork, function() { + forkWorkers(workersToFork, function () { SVRJSInitialized = true; });