Hi all,
finally got to upgrade my app to meteor 3.0 beta. Needed to change quite a few bits but overall it looks fine.
I just get several errors in the log like this one
Exception in onStop callback: TypeError: handle.stop is not a function
at OplogObserveDriver._stop (packages/mongo/oplog_observe_driver.js:966:20)
at OplogObserveDriver.stop (packages/mongo/oplog_observe_driver.js:971:12)
at ObserveMultiplexer._stop (packages/mongo/observe_multiplex.js:85:5)
at ObserveMultiplexer.removeHandle (packages/mongo/observe_multiplex.js:72:7)
at ObserveHandle.stop (packages/mongo/observe_multiplex.js:230:5)
at Subscription.<anonymous> (packages/mongo/collection.js:588:14)
at Subscription.<anonymous> (packages/meteor.js:1350:19)
I noticed that a myCollection.find({...}).observe({...})
now returns a Promise, so I changed all my custom pubs accordingly. However I still get those errors and the stack traces are not really helpful. Someone got a clue?