Fix fatal error should throw instead of return

This commit is contained in:
Wu Cheng-Han 2016-10-10 20:56:41 +08:00
parent d6d2cf978a
commit 4ea5191d30
1 changed files with 2 additions and 2 deletions

4
app.js
View File

@ -484,7 +484,7 @@ models.sequelize.sync().then(function () {
// check if realtime is ready
if (history.isReady() && realtime.isReady()) {
models.Revision.checkAllNotesRevision(function (err, notes) {
if (err) return new Error(err);
if (err) throw new Error(err);
if (!notes || notes.length <= 0) return startListen();
});
}
@ -511,7 +511,7 @@ process.on('SIGINT', function () {
var checkCleanTimer = setInterval(function () {
if (history.isReady() && realtime.isReady()) {
models.Revision.checkAllNotesRevision(function (err, notes) {
if (err) return new Error(err);
if (err) throw new Error(err);
if (notes.length <= 0) {
clearInterval(checkCleanTimer);
return process.exit(0);