Should not be in loop.

This commit is contained in:
David Glasser
2012-12-13 14:05:05 -08:00
parent 4a1db97dc8
commit 8f64942dac
2 changed files with 2 additions and 2 deletions

View File

@@ -361,8 +361,8 @@ _.extend(Meteor._LivedataSession.prototype, {
clearedFields.push(key);
else
changedFields[key] = value;
view.changed(subscriptionId, id, changedFields, clearedFields);
});
view.changed(subscriptionId, id, changedFields, clearedFields);
},
// Connect a new socket to this session, displacing (and closing)
// any socket that was previously connected

View File

@@ -121,7 +121,7 @@ _.extend(Meteor._SynchronousQueue.prototype, {
// We'll throw this exception through runTask.
exception = err;
} else {
Meteor._debug("Exception in queued task: " + err);
Meteor._debug("Exception in queued task: " + err.stack);
}
}
self._currentTaskFiber = undefined;