From b88a232596d3d2826ca9c8ab3583e94afab6af51 Mon Sep 17 00:00:00 2001 From: Mark Nadal Date: Sat, 21 Aug 2021 08:33:31 -0700 Subject: [PATCH] must we? --- examples/http.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/http.js b/examples/http.js index 4b7f787b..66bc60de 100644 --- a/examples/http.js +++ b/examples/http.js @@ -1,8 +1,8 @@ ;(function(){ - var cluster = require('cluster'); + /*var cluster = require('cluster'); if(cluster.isMaster){ return cluster.fork() && cluster.on('exit', function(){ cluster.fork(); require('../lib/crashed'); }); - } + }*/ var fs = require('fs'); var config = { port: process.env.OPENSHIFT_NODEJS_PORT || process.env.VCAP_APP_PORT || process.env.PORT || process.argv[2] || 8765 };