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
Hey,
The described function takes input parameters like username and password and passes them to the underlying MongoDB driver.
This can cause issues with specific values like a password containing a comma (,), and others as can be seen here: https://jira.mongodb.org/browse/NODE-809
Also, a better solution would be to leave the auth parameters (user and password) in the options parameter passed into the driver, instead of adding them to the beginning of url
The text was updated successfully, but these errors were encountered:
Hey,
The described function takes input parameters like
username
andpassword
and passes them to the underlying MongoDB driver.This can cause issues with specific values like a password containing a comma (
,
), and others as can be seen here:https://jira.mongodb.org/browse/NODE-809
Also, a better solution would be to leave the
auth
parameters (user and password) in theoptions
parameter passed into the driver, instead of adding them to the beginning ofurl
The text was updated successfully, but these errors were encountered: