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

Commit 7ffb4bb

Browse files
committed
fix(mongos-replset): pass connect options to child server instances
This allows for options determined during uri parsing to make it down to the creation of child Server instances using the legacy SDAM topology classes. NODE-1798
1 parent f93309a commit 7ffb4bb

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

lib/topologies/mongos.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ Mongos.prototype.connect = function(options) {
286286
// Create server instances
287287
var servers = this.s.seedlist.map(function(x) {
288288
const server = new Server(
289-
Object.assign({}, self.s.options, x, {
289+
Object.assign({}, self.s.options, x, options, {
290290
authProviders: self.authProviders,
291291
reconnect: false,
292292
monitoring: false,

lib/topologies/replset.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -960,12 +960,14 @@ ReplSet.prototype.connect = function(options) {
960960
var self = this;
961961
// Add any connect level options to the internal state
962962
this.s.connectOptions = options || {};
963+
963964
// Set connecting state
964965
stateTransition(this, CONNECTING);
966+
965967
// Create server instances
966968
var servers = this.s.seedlist.map(function(x) {
967969
return new Server(
968-
Object.assign({}, self.s.options, x, {
970+
Object.assign({}, self.s.options, x, options, {
969971
authProviders: self.authProviders,
970972
reconnect: false,
971973
monitoring: false,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
'use strict';
2+
3+
const ReplSet = require('../../../../lib/topologies/replset');
4+
const mock = require('mongodb-mock-server');
5+
const ReplSetFixture = require('../common').ReplSetFixture;
6+
const expect = require('chai').expect;
7+
8+
describe('Compression (ReplSet)', function() {
9+
let test;
10+
before(() => (test = new ReplSetFixture()));
11+
afterEach(() => mock.cleanup());
12+
beforeEach(() => test.setup());
13+
14+
it('should pass compression information to child server instances on connect', function(done) {
15+
const compressionData = [];
16+
test.primaryServer.setMessageHandler(request => {
17+
const doc = request.document;
18+
if (doc.ismaster) {
19+
compressionData.push(doc.compression);
20+
request.reply(test.primaryStates[0]);
21+
}
22+
});
23+
24+
test.firstSecondaryServer.setMessageHandler(request => {
25+
const doc = request.document;
26+
if (doc.ismaster) {
27+
compressionData.push(doc.compression);
28+
request.reply(test.firstSecondaryStates[0]);
29+
}
30+
});
31+
32+
const replSet = new ReplSet(
33+
[test.primaryServer.address(), test.firstSecondaryServer.address()],
34+
{
35+
setName: 'rs',
36+
haInterval: 10000,
37+
connectionTimeout: 3000,
38+
secondaryOnlyConnectionAllowed: true,
39+
size: 1
40+
}
41+
);
42+
43+
replSet.on('fullsetup', () => {
44+
compressionData.forEach(data => {
45+
expect(data).to.eql(['zlib']);
46+
});
47+
48+
done();
49+
});
50+
51+
replSet.connect({ compression: { compressors: ['zlib'] } });
52+
});
53+
});

0 commit comments

Comments
 (0)