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

Commit

Permalink
fix(test-environments): ensure all servers run on separate ports
Browse files Browse the repository at this point in the history
NODE-884
  • Loading branch information
mbroadst committed Mar 27, 2018
1 parent be01ffe commit b63e5d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/environments.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ class ReplicaSetEnvironment extends EnvironmentBase {
'mongod',
[
genReplsetConfig(31000, { tags: { loc: 'ny' } }),
genReplsetConfig(31000, { tags: { loc: 'sf' } }),
genReplsetConfig(31001, { tags: { loc: 'sf' } }),
genReplsetConfig(31002, { tags: { loc: 'sf' } }),
genReplsetConfig(31003, { tags: { loc: 'sf' } }),
genReplsetConfig(31000, { tags: { loc: 'sf' } }),
genReplsetConfig(31000, { arbiter: true })
genReplsetConfig(31004, { tags: { loc: 'sf' } }),
genReplsetConfig(31005, { arbiter: true })
],
{
replSet: 'rs'
Expand Down

0 comments on commit b63e5d8

Please sign in to comment.