You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bluebird is being "helpful" by logging rejected promises that don't have rejection handlers.
This leads to console noise when promises are silently discarded in favour of callbacks (e.g. when db.collection or db.edgeCollection with autoCreate=true determines that a collection doesn't exist).
This problem only occurs when bluebird is used as a promise polyfill via global.Promise = require('bluebird').
The text was updated successfully, but these errors were encountered:
@xescugc Can you test with the current development version again? I've implemented a workaround that should make sure bluebird only complains if you didn't pass a callback and don't use a rejection handler.
Ok i've tested it including the global.Promise and removing the collections, and it worked 😄 , i'll migrate everithing to promises this night but i think the bug is solved.
Bluebird is being "helpful" by logging rejected promises that don't have rejection handlers.
This leads to console noise when promises are silently discarded in favour of callbacks (e.g. when
db.collection
ordb.edgeCollection
with autoCreate=true determines that a collection doesn't exist).This problem only occurs when bluebird is used as a promise polyfill via
global.Promise = require('bluebird')
.The text was updated successfully, but these errors were encountered: