summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/remove_single_document_eval_nolock.js
blob: e88868c334534e383b809eb3eb06d7d618488708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';

/**
 * remove_single_document_eval_nolock.js
 *
 * Runs remove_single_document_eval with the eval option { nolock: true }.
 */
load('jstests/concurrency/fsm_libs/extend_workload.js');                   // for extendWorkload
load('jstests/concurrency/fsm_workloads/remove_single_document_eval.js');  // for $config

var $config = extendWorkload($config,
                             function($config, $super) {

                                 $config.data.nolock = true;

                                 return $config;
                             });