Skip to content

Commit

Permalink
add ticket number to todo
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken committed Apr 7, 2022
1 parent da667b3 commit 7943e96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sdam/topology_description.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export class TopologyDescription {
let { type: topologyType, setName, maxSetVersion, maxElectionId, commonWireVersion } = this;

if (serverDescription.setName && setName && serverDescription.setName !== setName) {
// TODO(NODE-XXXX): servers with an incorrect setName should be removed not marked Unknown
// TODO(NODE-4159): servers with an incorrect setName should be removed not marked Unknown
serverDescription = new ServerDescription(address, undefined);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ function assertTopologyDescriptionOutcomeExpectations(
const actualServers = description.servers;
expect(actualServers).to.be.instanceOf(Map);

// TODO(NODE-XXXX): The node driver keeps unknown servers where it should discard
// TODO(NODE-4159): The node driver keeps unknown servers where it should discard
// expect(actualServers.size).to.equal(expectedServers.size);

for (const serverName of expectedServers.keys()) {
Expand Down

0 comments on commit 7943e96

Please sign in to comment.