summaryrefslogtreecommitdiff
path: root/jstests/replsets/apply_ops_concurrent_different_db.js
blob: 2827965d9590cffe3e641309cfa184319db5c952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * @tags: [
 * # 6.2 removes support for atomic applyOps
 * requires_fcv_62,
 * ]
 */
(function() {
'use strict';

load('jstests/replsets/libs/apply_ops_concurrent.js');

new ApplyOpsConcurrentTest({ns1: 'test1.coll1', ns2: 'test2.coll2'}).run();
}());