summaryrefslogtreecommitdiff
path: root/jstests/disk
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2018-08-23 17:50:46 -0400
committerEric Milkie <milkie@10gen.com>2018-08-24 11:38:27 -0400
commit5c1a3ec728a71bca81629f99be782ac305a6ad4b (patch)
tree5e0af4cb4cd2ffbfa8ef80f21210cc56ecf191b3 /jstests/disk
parentf7c2600036ce876bb389f3eb3adc8eada6932d8b (diff)
downloadmongo-5c1a3ec728a71bca81629f99be782ac305a6ad4b.tar.gz
SERVER-36534 don't acquire locks on oplog when writing oplog entries
Diffstat (limited to 'jstests/disk')
-rw-r--r--jstests/disk/wt_missing_file_errors.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/disk/wt_missing_file_errors.js b/jstests/disk/wt_missing_file_errors.js
index 626974bbc30..3a9c783aad6 100644
--- a/jstests/disk/wt_missing_file_errors.js
+++ b/jstests/disk/wt_missing_file_errors.js
@@ -23,7 +23,7 @@
MongoRunner.stopMongod(mongod);
jsTestLog("deleting collection file: " + testCollFile);
removeFile(testCollFile);
- }, "Fatal Assertion 50883");
+ }, "Fatal Assertion 50882");
/**
* Test 2. Delete the _mdb_catalog.
@@ -35,7 +35,7 @@
let mdbCatalogFile = dbpath + "_mdb_catalog.wt";
jsTestLog("deleting catalog file: " + mdbCatalogFile);
removeFile(mdbCatalogFile);
- }, "Fatal Assertion 50883");
+ }, "Fatal Assertion 50882");
/**
* Test 3. Delete the WiredTiger.wt.
@@ -73,6 +73,6 @@
testColl.insert({a: 1});
});
},
- "Fatal Assertion 50883");
+ "Fatal Assertion 50882");
})();