summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/remove_single_document_eval_nolock.js
blob: a3f67c26892f2bf12b8992332878afbb0cc38e53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'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;
});