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

Commit 923ceb0

Browse files
committed
fix(srv-parsing): ensure parse options are propogated to txt lookup
1 parent 5d87044 commit 923ceb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/uri_parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function parseSrvConnectionString(uri, options, callback) {
124124
connectionString += `?${connectionStringOptions.join('&')}`;
125125
}
126126

127-
parseConnectionString(connectionString, callback);
127+
parseConnectionString(connectionString, options, callback);
128128
});
129129
});
130130
}

test/tests/unit/mongodb_srv_spec_tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('mongodb+srv (spec)', function() {
2727
it(test[1].comment, {
2828
metadata: { requires: { topology: ['single'] } },
2929
test: function(done) {
30-
parseConnectionString(test[1].uri, (err, result) => {
30+
parseConnectionString(test[1].uri, { caseTranslate: false }, (err, result) => {
3131
if (test[1].error) {
3232
expect(err).to.exist;
3333
expect(result).to.not.exist;

0 commit comments

Comments
 (0)