summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/filemd5_kill_during_yield.js
diff options
context:
space:
mode:
authorRuoxin Xu <ruoxin.xu@mongodb.com>2020-03-06 23:32:52 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-03-19 12:06:50 +0000
commitc00b8e8cd6935c2816ae7173359cd97818abd590 (patch)
tree60bd3071ce222fd1cc7d9fc99ab6fa28455fad64 /jstests/noPassthrough/filemd5_kill_during_yield.js
parentfc50384c81d14e9db5c76385006b94f3eaa5e52b (diff)
downloadmongo-c00b8e8cd6935c2816ae7173359cd97818abd590.tar.gz
SERVER-43614 Added "_failPointMessage" field in CurOp for Failpoints used only.
Diffstat (limited to 'jstests/noPassthrough/filemd5_kill_during_yield.js')
-rw-r--r--jstests/noPassthrough/filemd5_kill_during_yield.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthrough/filemd5_kill_during_yield.js b/jstests/noPassthrough/filemd5_kill_during_yield.js
index 20e717d0b6c..caa3a869b8e 100644
--- a/jstests/noPassthrough/filemd5_kill_during_yield.js
+++ b/jstests/noPassthrough/filemd5_kill_during_yield.js
@@ -24,7 +24,7 @@ const failingMD5Shell =
let opId;
assert.soon(
() => {
- const filter = {ns: "test.fs.chunks", "command.filemd5": 1, msg: kFailPointName};
+ const filter = {ns: "test.fs.chunks", "command.filemd5": 1, failpointMsg: kFailPointName};
const result =
db.getSiblingDB("admin").aggregate([{$currentOp: {}}, {$match: filter}]).toArray();