From d8ca99e2a8cb524057cdca7f36fc8d2eebd6f1fb Mon Sep 17 00:00:00 2001 From: pilsy Date: Wed, 23 Oct 2013 03:32:20 +1000 Subject: [PATCH] hotfix(background-tasks): Renamed config.background.on to config.background.enabled --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index e0190ac..b11e080 100644 --- a/app.js +++ b/app.js @@ -27,7 +27,7 @@ if ( cluster.isMaster ) { }); // Setup the background tasks worker - if ( config.background && config.background.on === true ) { + if ( config.background && config.background.enabled === true ) { function setupBackgroundTasks() { console.log('Setup background tasks...');