Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 345e6af

Browse files
kvwalkermbroadst
authored andcommitted
fix(uri_parser): use admin as default auth.db
Fixes NODE-1635
1 parent 956d5a2 commit 345e6af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/uri_parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ function parseConnectionString(uri, options, callback) {
234234
}
235235

236236
parsedOptions = Object.assign({}, parsedOptions, options);
237-
const auth = { username: null, password: null, db: db && db !== '' ? qs.unescape(db) : null };
237+
const auth = { username: null, password: null, db: db && db !== '' ? qs.unescape(db) : 'admin' };
238238
if (cap[4].split('?')[0].indexOf('@') !== -1) {
239239
return callback(new MongoParseError('Unescaped slash in userinfo section'));
240240
}

0 commit comments

Comments
 (0)