diff --git a/loader.js b/loader.js index 3498d5f908..1b6d36968d 100644 --- a/loader.js +++ b/loader.js @@ -102,9 +102,7 @@ Loader.addWorkerEvents = function(worker) { break; case 'restart': console.log('[cluster] Restarting...'); - Loader.restart(function(err) { - console.log('[cluster] Restarting...'); - }); + Loader.restart(); break; case 'reload': console.log('[cluster] Reloading...'); @@ -199,7 +197,7 @@ function getPorts() { return port; } -Loader.restart = function(callback) { +Loader.restart = function() { killWorkers(); Loader.start();