Closed benjamindburke closed 2 days ago
Relevant MongoDB spec: https://www.mongodb.com/docs/manual/reference/connection-string/#standard-connection-string-format
I am attempting to connect to a sharded cluster using a URI compliant to MongoDB's Standard Connection String Format specification. My MongoDB URI follows the format:
mongodb://USER:PASSWORD@shard-0.mongodb.net:27017,shard-1.mongodb.net:27017,shard-2.mongodb.net:27017/admin?ssl=true&retryWrites=false&loadBalanced=false&replicaSet=replica-set-key-shard-0&readPreference=primary&connectTimeoutMS=10000&authSource=admin&authMechanism=SCRAM-SHA-1
When entering this valid MongoDB URI into the New Connection URL field, the following error occurs:
New Connection
URL
When entering this valid MongoDB URI into the New Connection URL field, I should connect to the sharded cluster.
Great catch, thank you, I have already created a fix that should be merged today and released soon
Relevant MongoDB spec: https://www.mongodb.com/docs/manual/reference/connection-string/#standard-connection-string-format
Description
I am attempting to connect to a sharded cluster using a URI compliant to MongoDB's Standard Connection String Format specification. My MongoDB URI follows the format:
Observed Behavior
When entering this valid MongoDB URI into the
New Connection
URL
field, the following error occurs:Expected Behavior
When entering this valid MongoDB URI into the
New Connection
URL
field, I should connect to the sharded cluster.