You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The reason is that we are deleting any fields starting in _sub_ when querying local collections on the client, but this interferes also with maintenance of internal collection, so when server removes our _sub_ fields (when subscription in tests is stopped), those fields are not really removed from internal collection because projection removes them from the object as well then, so tests fail.
If/once this PR lands in Meteor it would fix this issue as well: meteor/meteor#10696
The text was updated successfully, but these errors were encountered:
This is not too critical issue though, only tests are pretty strict. So you should never try to query after you stopped subscription anyway. This is when this failure mode occurs.
The reason is that we are deleting any fields starting in
_sub_
when querying local collections on the client, but this interferes also with maintenance of internal collection, so when server removes our_sub_
fields (when subscription in tests is stopped), those fields are not really removed from internal collection because projection removes them from the object as well then, so tests fail.If/once this PR lands in Meteor it would fix this issue as well: meteor/meteor#10696
The text was updated successfully, but these errors were encountered: