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

Commit 8489265

Browse files
committed
fix(retryable-writes): don't add txnNumber for standalone servers
1 parent 4b6e607 commit 8489265

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

lib/topologies/shared.js

+19
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const os = require('os');
44
const f = require('util').format;
55
const ReadPreference = require('./read_preference');
66
const Buffer = require('safe-buffer').Buffer;
7+
const TopologyType = require('../sdam/topology_description').TopologyType;
78

89
/**
910
* Emit event if it exists
@@ -398,6 +399,20 @@ const SessionMixins = {
398399
}
399400
};
400401

402+
function topologyType(topology) {
403+
if (topology.description) {
404+
return topology.description.type;
405+
}
406+
407+
if (topology.type === 'mongos') {
408+
return TopologyType.Sharded;
409+
} else if (topology.type === 'replset') {
410+
return TopologyType.ReplicaSetWithPrimary;
411+
}
412+
413+
return TopologyType.Single;
414+
}
415+
401416
const RETRYABLE_WIRE_VERSION = 6;
402417

403418
/**
@@ -415,6 +430,10 @@ const isRetryableWritesSupported = function(topology) {
415430
return false;
416431
}
417432

433+
if (topologyType(topology) === TopologyType.Single) {
434+
return false;
435+
}
436+
418437
return true;
419438
};
420439

0 commit comments

Comments
 (0)