Skip to content

Commit 4b34967

Browse files
authored
Merge pull request #14391 from Automattic/vkarpov15/gh-11382
fix(schema): avoid applying default write concern to operations that are in a transaction
2 parents c02141b + cf4c4f4 commit 4b34967

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

lib/helpers/schema/applyWriteConcern.js

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ module.exports = function applyWriteConcern(schema, options) {
66
if (options.writeConcern != null) {
77
return;
88
}
9+
// Don't apply default write concern to operations in transactions,
10+
// because setting write concern on an operation in a transaction is an error
11+
// See: https://www.mongodb.com/docs/manual/reference/write-concern/
12+
if (options && options.session && options.session.transaction) {
13+
return;
14+
}
915
const writeConcern = get(schema, 'options.writeConcern', {});
1016
if (Object.keys(writeConcern).length != 0) {
1117
options.writeConcern = {};

test/docs/transactions.test.js

+16
Original file line numberDiff line numberDiff line change
@@ -477,4 +477,20 @@ describe('transactions', function() {
477477

478478
assert.equal(i, 3);
479479
});
480+
481+
it('doesnt apply schema write concern to transaction operations (gh-11382)', async function() {
482+
db.deleteModel(/Test/);
483+
const Test = db.model('Test', Schema({ status: String }, { writeConcern: { w: 'majority' } }));
484+
485+
await Test.createCollection();
486+
await Test.deleteMany({});
487+
488+
const session = await db.startSession();
489+
490+
await session.withTransaction(async function() {
491+
await Test.findOneAndUpdate({}, { name: 'test' }, { session });
492+
});
493+
494+
await session.endSession();
495+
});
480496
});

0 commit comments

Comments
 (0)