mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Replaced process.nextTick with setImmediate in _SynchronousQueue
This commit is contained in:
@@ -123,7 +123,7 @@ _.extend(Meteor._SynchronousQueue.prototype, {
|
||||
return;
|
||||
|
||||
self._runningOrRunScheduled = true;
|
||||
process.nextTick(function () {
|
||||
setImmediate(function () {
|
||||
Fiber(function () {
|
||||
self._run();
|
||||
}).run();
|
||||
|
||||
Reference in New Issue
Block a user