We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mongoose: mpromise (mongoose's default promise library) is deprecated, plug in your own promise library instead: http://mongoosejs.com/docs/promises.html
I've been getting this warning since July or so. From the details that I looked here: Automattic/mongoose#4291
The maintainer explains that the message tells you change from mongoose's default promise library. From the thread above, a fix would be to declare
mongoose.Promise = global.Promise;
(or another promise library) before the connect, which I have been doing interim.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've been getting this warning since July or so. From the details that I looked here: Automattic/mongoose#4291
The maintainer explains that the message tells you change from mongoose's default promise library. From the thread above, a fix would be to declare
(or another promise library) before the connect, which I have been doing interim.
The text was updated successfully, but these errors were encountered: