From 30ae0a5499c9d851b915525bf4bcdf52e9367e7c Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Wed, 15 Nov 2017 13:06:23 -0500 Subject: [PATCH] another process.nextTick --- src/database/mongo/sorted.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/database/mongo/sorted.js b/src/database/mongo/sorted.js index 92838a1086..49b5862fe2 100644 --- a/src/database/mongo/sorted.js +++ b/src/database/mongo/sorted.js @@ -503,7 +503,7 @@ module.exports = function (db, module) { if (options.interval) { setTimeout(next, options.interval); } else { - next(); + process.nextTick(next); } }, ], next);