“Meteor code must always run within a Fiber” when calling Collection.insert on server
Just wrapping your function in a Fiber might not be enough and can lead to unexpected behavior. The reason is, along with Fiber, Meteor requires a set of variables attached to a fiber. Meteor uses data attached to a fiber as a dynamic scope and the easiest way to use it with 3rd party api … Read more