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

Commit 5da75e4

Browse files
committed
feat(session): allow session options to be passed to write cmds
NODE-1088
1 parent e3a1c8b commit 5da75e4

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

lib/topologies/server.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,8 @@ Server.prototype.command = function(ns, cmd, options, callback) {
692692
monitoring: typeof options.monitoring === 'boolean' ? options.monitoring : false,
693693
fullResult: typeof options.fullResult === 'boolean' ? options.fullResult : false,
694694
requestId: query.requestId,
695-
socketTimeout: typeof options.socketTimeout === 'number' ? options.socketTimeout : null
695+
socketTimeout: typeof options.socketTimeout === 'number' ? options.socketTimeout : null,
696+
session: options.session || null
696697
};
697698

698699
// Write the operation to the pool

lib/wireprotocol/2_6_support.js

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ var executeWrite = function(pool, bson, type, opsField, ns, ops, options, callba
4949

5050
// Options object
5151
var opts = { command: true };
52+
if (typeof options.session !== 'undefined') opts.session = options.session;
5253
var queryOptions = { checkKeys: false, numberToSkip: 0, numberToReturn: 1 };
5354
if (type === 'insert') queryOptions.checkKeys = true;
5455
if (typeof options.checkKeys === 'boolean') queryOptions.checkKeys = options.checkKeys;

lib/wireprotocol/3_2_support.js

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ var executeWrite = function(pool, bson, type, opsField, ns, ops, options, callba
5858

5959
// Options object
6060
var opts = { command: true };
61+
if (typeof options.session !== 'undefined') opts.session = options.session;
6162
var queryOptions = { checkKeys: false, numberToSkip: 0, numberToReturn: 1 };
6263
if (type === 'insert') queryOptions.checkKeys = true;
6364
if (typeof options.checkKeys === 'boolean') queryOptions.checkKeys = options.checkKeys;

0 commit comments

Comments
 (0)