forked from svrjs/svrjs
Lint out the codebase
This commit is contained in:
parent
a82f5ac010
commit
601eed5f62
1 changed files with 9 additions and 3 deletions
12
src/index.js
12
src/index.js
|
@ -1286,7 +1286,10 @@ function msgListener(message) {
|
||||||
} else if (message == "\x12SAVEGOOD") {
|
} else if (message == "\x12SAVEGOOD") {
|
||||||
serverconsole.locmessage("Configuration saved.");
|
serverconsole.locmessage("Configuration saved.");
|
||||||
} else if (message.indexOf("\x12SAVEERR") == 0) {
|
} else if (message.indexOf("\x12SAVEERR") == 0) {
|
||||||
serverconsole.locwarnmessage("There was a problem while saving configuration file. Reason: " + message.substring(8));
|
serverconsole.locwarnmessage(
|
||||||
|
"There was a problem while saving configuration file. Reason: " +
|
||||||
|
message.substring(8),
|
||||||
|
);
|
||||||
} else if (message[0] == "\x12") {
|
} else if (message[0] == "\x12") {
|
||||||
console.log("RECEIVED CONTROL MESSAGE: " + message.substr(1));
|
console.log("RECEIVED CONTROL MESSAGE: " + message.substr(1));
|
||||||
} else {
|
} else {
|
||||||
|
@ -1652,7 +1655,7 @@ function start(init) {
|
||||||
}
|
}
|
||||||
checkWorker(callback, _id + 1);
|
checkWorker(callback, _id + 1);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
checkWorker(function () {
|
checkWorker(function () {
|
||||||
const wN = Math.floor(Math.random() * goodWorkers.length); //Send a configuration saving message to a random worker.
|
const wN = Math.floor(Math.random() * goodWorkers.length); //Send a configuration saving message to a random worker.
|
||||||
try {
|
try {
|
||||||
|
@ -1666,7 +1669,10 @@ function start(init) {
|
||||||
cluster.workers[goodWorkers[wN]].removeAllListeners("message");
|
cluster.workers[goodWorkers[wN]].removeAllListeners("message");
|
||||||
addListenersToWorker(cluster.workers[goodWorkers[wN]]);
|
addListenersToWorker(cluster.workers[goodWorkers[wN]]);
|
||||||
}
|
}
|
||||||
serverconsole.locwarnmessage("There was a problem while saving configuration file. Reason: " + err.message);
|
serverconsole.locwarnmessage(
|
||||||
|
"There was a problem while saving configuration file. Reason: " +
|
||||||
|
err.message,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, 300000);
|
}, 300000);
|
||||||
|
|
Reference in a new issue