diff options
author | Wu Cheng-Han | 2017-01-12 17:17:01 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2017-01-12 17:17:01 +0800 |
commit | fc788e805e8896f3ae967270148939d37923c516 (patch) | |
tree | b9ad3d44d1f4af390559b7fc1a7b83500018b5da | |
parent | 0432fef26762cfa62338a11b864488a4d525b233 (diff) |
Fix SIGINT checkClean should only log error instead throw error
Diffstat (limited to '')
-rw-r--r-- | app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -639,7 +639,7 @@ process.on('SIGINT', function () { var checkCleanTimer = setInterval(function () { if (history.isReady() && realtime.isReady()) { models.Revision.checkAllNotesRevision(function (err, notes) { - if (err) throw new Error(err); + if (err) return logger.error(err); if (!notes || notes.length <= 0) { clearInterval(checkCleanTimer); return process.exit(0); |