summaryrefslogtreecommitdiff
path: root/jstests/replsets/tenant_migration_commit_transaction_retry.js
diff options
context:
space:
mode:
authorSuganthi Mani <suganthi.mani@mongodb.com>2020-12-02 02:30:54 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-12-02 07:51:05 +0000
commit8f4b2d598b492b10f3eee35e5401098f8aeb79de (patch)
tree631a73645ab852e86305068eef57378bfa5a1d68 /jstests/replsets/tenant_migration_commit_transaction_retry.js
parentf4a7c394ccbf8057ebe2a571129eb528aadb131b (diff)
downloadmongo-8f4b2d598b492b10f3eee35e5401098f8aeb79de.tar.gz
SERVER-51734 Enable tenant migration recipient testing for tests w/o node failover.
Diffstat (limited to 'jstests/replsets/tenant_migration_commit_transaction_retry.js')
-rw-r--r--jstests/replsets/tenant_migration_commit_transaction_retry.js12
1 files changed, 2 insertions, 10 deletions
diff --git a/jstests/replsets/tenant_migration_commit_transaction_retry.js b/jstests/replsets/tenant_migration_commit_transaction_retry.js
index d99a48c80cc..c516d79fbf0 100644
--- a/jstests/replsets/tenant_migration_commit_transaction_retry.js
+++ b/jstests/replsets/tenant_migration_commit_transaction_retry.js
@@ -29,16 +29,8 @@ const donorRst = new ReplSetTest({
}
}
});
-const recipientRst = new ReplSetTest({
- nodes: [{}, {rsConfig: {priority: 0}}, {rsConfig: {priority: 0}}],
- name: "recipient",
- nodeOptions: {
- setParameter: {
- // TODO SERVER-51734: Remove the failpoint 'returnResponseOkForRecipientSyncDataCmd'.
- 'failpoint.returnResponseOkForRecipientSyncDataCmd': tojson({mode: 'alwaysOn'})
- }
- }
-});
+const recipientRst = new ReplSetTest(
+ {nodes: [{}, {rsConfig: {priority: 0}}, {rsConfig: {priority: 0}}], name: "recipient"});
donorRst.startSet();
donorRst.initiate();