I’m trying to use the async/await, but it seems I need to do something more to stay in my fiber. For instance
await somePromise();
const userIds = Users.find({ ... }).fetch();
will throw
Error: Meteor code must always run within a Fiber. Try wrapping callbacks that you pass to non-Meteor libraries with Meteor.bindEnvironment.
I though that Meteor support of async/await would handle that. What should I change?