Mongoose async/await with Koa get stuck on await Model.findOne().exec() Mongoose async/await with Koa get stuck on await Model.findOne().exec() mongoose mongoose

Mongoose async/await with Koa get stuck on await Model.findOne().exec()


I wrote very similar app, but all worked fine. What type of promises you use? I mean you use native JS promisese or Mongoose promises? With mongoose promises I had problems so I change it for native JS:

const mongoose = require('mongoose');mongoose.Promise = Promise; // Use native Promisesmongoose.connect(config.get('mongoose.uri'), config.get('mongoose.options'));...module.exports = mongoose;


I started another application and t is working now. Don't know what happened.Maybe new version fixed.