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
Set url parameter in connection properties to mongodb://localhost:27017
Set database parameter to mydb
Current Behavior
It will use admin as database
Expected Behavior
It should use mydb as database
Additional information
In the connector it checks if the dbName is in the url (mongodb.js#L338) and if not it should use settings.database but this is does not quite work because in the url will always be a database, the mongo driver will always set admin as default in the url if no database is specified (url_parser.js#L377)