Commit
This commit is contained in:
commit
d1c8cae2c1
1417 changed files with 326736 additions and 0 deletions
37
node_modules/mongoose/lib/helpers/schema/applyWriteConcern.js
generated
vendored
Normal file
37
node_modules/mongoose/lib/helpers/schema/applyWriteConcern.js
generated
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
'use strict';
|
||||
|
||||
module.exports = function applyWriteConcern(schema, options) {
|
||||
if (options.writeConcern != null) {
|
||||
return;
|
||||
}
|
||||
// Don't apply default write concern to operations in transactions,
|
||||
// because setting write concern on an operation in a transaction is an error
|
||||
// See: https://www.mongodb.com/docs/manual/reference/write-concern/
|
||||
if (options && options.session && options.session.transaction) {
|
||||
return;
|
||||
}
|
||||
const writeConcern = schema.options.writeConcern ?? {};
|
||||
if (Object.keys(writeConcern).length != 0) {
|
||||
options.writeConcern = {};
|
||||
if (!('w' in options) && writeConcern.w != null) {
|
||||
options.writeConcern.w = writeConcern.w;
|
||||
}
|
||||
if (!('j' in options) && writeConcern.j != null) {
|
||||
options.writeConcern.j = writeConcern.j;
|
||||
}
|
||||
if (!('wtimeout' in options) && writeConcern.wtimeout != null) {
|
||||
options.writeConcern.wtimeout = writeConcern.wtimeout;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (!('w' in options) && writeConcern.w != null) {
|
||||
options.w = writeConcern.w;
|
||||
}
|
||||
if (!('j' in options) && writeConcern.j != null) {
|
||||
options.j = writeConcern.j;
|
||||
}
|
||||
if (!('wtimeout' in options) && writeConcern.wtimeout != null) {
|
||||
options.wtimeout = writeConcern.wtimeout;
|
||||
}
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue