chore(cluster): @colegleason I'm disabling cluster for now, people are

reporting more issues on develop (VersioError & 503) than before. Can
revert his commit in the near future, want to investigate a bit though
This commit is contained in:
Tyler Renelle 2014-01-19 14:52:57 -08:00
parent 39f0961b75
commit b0fc17bae5

View file

@ -2,7 +2,7 @@
var cluster = require("cluster");
var nconf = require('nconf');
if (cluster.isMaster && (nconf.get('NODE_ENV') == 'development' || nconf.get('NODE_ENV') == 'production')) {
if (false && cluster.isMaster && (nconf.get('NODE_ENV') == 'development' || nconf.get('NODE_ENV') == 'production')) {
var numCPUs = require('os').cpus().length;
// Fork workers.