fix server not starting

broken by af421ec
This commit is contained in:
jomo
2015-02-13 20:48:36 +01:00
parent c2a4b3f9f0
commit 99a5a34f3b
3 changed files with 7 additions and 5 deletions

View File

@@ -17,5 +17,5 @@ if (cluster.isMaster) {
setInterval(cleaner.run, config.cleaning_interval * 1000);
} else {
require("../server.js")();
require("../server.js").boot();
}