summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough
diff options
context:
space:
mode:
authorJack Mulrow <jack.mulrow@mongodb.com>2020-03-13 14:53:33 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-03-13 20:04:41 +0000
commit69c511dcd726d4aba961df704981b62b9b297121 (patch)
treeb01a139f3f8fee78bb45932e9bbea6822100d66b /jstests/noPassthrough
parent16889524ede36d890f863b63447ba0af9d75013e (diff)
downloadmongo-69c511dcd726d4aba961df704981b62b9b297121.tar.gz
SERVER-46859 Use namespace parameter with find fail point in router_transactions_metrics.js
Diffstat (limited to 'jstests/noPassthrough')
-rw-r--r--jstests/noPassthrough/router_transactions_metrics.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthrough/router_transactions_metrics.js b/jstests/noPassthrough/router_transactions_metrics.js
index df20826b81b..54ce919faef 100644
--- a/jstests/noPassthrough/router_transactions_metrics.js
+++ b/jstests/noPassthrough/router_transactions_metrics.js
@@ -641,7 +641,7 @@ jsTest.log("Abandoned transaction.");
jsTest.log("Active transaction.");
(() => {
assert.commandWorked(st.rs0.getPrimary().adminCommand(
- {configureFailPoint: "waitInFindBeforeMakingBatch", mode: "alwaysOn"}));
+ {configureFailPoint: "waitInFindBeforeMakingBatch", mode: "alwaysOn", data: {nss: ns}}));
const txnThread = new Thread(function(host, dbName, collName) {
const mongosConn = new Mongo(host);