You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
455 B
15 lines
455 B
'use strict';
|
|
|
|
const utils = require('../../utils');
|
|
|
|
module.exports = function applyGlobalMaxTimeMS(options, model) {
|
|
if (utils.hasUserDefinedProperty(options, 'maxTimeMS')) {
|
|
return;
|
|
}
|
|
|
|
if (utils.hasUserDefinedProperty(model.db.options, 'maxTimeMS')) {
|
|
options.maxTimeMS = model.db.options.maxTimeMS;
|
|
} else if (utils.hasUserDefinedProperty(model.base.options, 'maxTimeMS')) {
|
|
options.maxTimeMS = model.base.options.maxTimeMS;
|
|
}
|
|
};
|