Meteor._wrapAsync has been renamed to Meteor.wrapAsync undefined

I am getting a warning about starting the meteorite server. Meteor._wrapAsync has been renamed to Meteor.wrapAsync undefined

... Does anyone know why?

+3


source to share


3 answers


This is just to let you know that the previously undocumented API has Meteor._wrapAsync

been renamed to Meteor.wrapAsync

and officially registered: http://docs.meteor.com/#meteor_wrapasync

If you do not use this function directly in your own code, it is most likely that the exact packages that you are using the call itself Meteor._wrapAsync

, if these packages are actively supported, the authors will fix them sooner or later.



Anyway, this is just a warning and will not affect your application, you should not be alarmed because it will not break anything.

+6


source


As of this writing (8 March 2015), the package calling this is almost certainly CollectionFS. I am using cfs:gridfs

as storage, so it is from this or cfs:standard-packages

.



cfs:gridfs

also has a warning against deployment because it is not production ready ... Maybe this is one of the problems and I hope the package will love love soon, otherwise I will have to jump into LOL.

+5


source


I vote for cfs: standard packages as the culprit, or perhaps both, as the message happens with either cfs.gridfs installed or cfs filesystem installed:

+1


source







All Articles