logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 0790aa91659cb6f839649d59e8ef65375dfff5eb
parent: e2a1b574ab4ec5dd07dbc5c317bcc3718f13c19b
Author: kuro5hin <rusty@kuro5hin.org>
Date:   Tue, 18 Apr 2017 09:58:22 -0400

Fix streaming server worker count (#2082)

* Make sure we start at least one streaming worker, even if there's only one CPU and we're in production mode.

* Oops, let's make sure we're counting cpus right too.

Diffstat:

Mstreaming/index.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streaming/index.js b/streaming/index.js @@ -19,7 +19,7 @@ dotenv.config({ if (cluster.isMaster) { // cluster master - const core = +process.env.STREAMING_CLUSTER_NUM || (env === 'development' ? 1 : os.cpus().length - 1) + const core = +process.env.STREAMING_CLUSTER_NUM || (env === 'development' ? 1 : (os.cpus().length > 1 ? os.cpus().length - 1 : 1)) const fork = () => { const worker = cluster.fork(); worker.on('exit', (code, signal) => {