From 62eccd48e591fac2774032330ee03a2e60df00b5 Mon Sep 17 00:00:00 2001 From: Wu Cheng-Han Date: Sun, 18 Dec 2016 22:52:30 +0800 Subject: Try to fix when server have heavy loading cache might not update to db properly --- lib/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/history.js') diff --git a/lib/history.js b/lib/history.js index 4a3bbe1e..2723422c 100644 --- a/lib/history.js +++ b/lib/history.js @@ -27,10 +27,10 @@ var updater = setInterval(function () { if (cache.isDirty) { if (config.debug) logger.info("history updater found dirty history: " + key); var history = parseHistoryToArray(cache.history); + cache.isDirty = false; finishUpdateHistory(key, history, function (err, count) { if (err) return callback(err, null); if (!count) return callback(null, null); - cache.isDirty = false; cache.updateAt = Date.now(); return callback(null, null); }); -- cgit v1.2.3