summaryrefslogtreecommitdiff
path: root/buildscripts/antithesis
diff options
context:
space:
mode:
authorTausif Rahman <tausif.rahman@mongodb.com>2022-05-12 15:38:26 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-05-12 17:04:21 +0000
commit1cd743c746d94603d965c828b3187852a59d991c (patch)
tree2deb85d356800f3c38248f1fc29d51e32de7a788 /buildscripts/antithesis
parent91c72975e1d9a58621c2fb6772bbfaf44a137aa8 (diff)
downloadmongo-1cd743c746d94603d965c828b3187852a59d991c.tar.gz
SERVER-66311 Set fassertOnLockTimeoutForStepUpDown to 0 for Antithesis
Diffstat (limited to 'buildscripts/antithesis')
-rw-r--r--buildscripts/antithesis/topologies/sharded_cluster/scripts/configsvr_init.sh2
-rw-r--r--buildscripts/antithesis/topologies/sharded_cluster/scripts/database_init.sh2
-rwxr-xr-xbuildscripts/antithesis/topologies/sharded_cluster/scripts/mongos_init.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/buildscripts/antithesis/topologies/sharded_cluster/scripts/configsvr_init.sh b/buildscripts/antithesis/topologies/sharded_cluster/scripts/configsvr_init.sh
index 4124b0a1b54..805f0e393ab 100644
--- a/buildscripts/antithesis/topologies/sharded_cluster/scripts/configsvr_init.sh
+++ b/buildscripts/antithesis/topologies/sharded_cluster/scripts/configsvr_init.sh
@@ -1,4 +1,4 @@
-mongod --bind_ip 0.0.0.0 --configsvr --replSet ConfigServerReplSet --logpath /var/log/mongodb/mongodb.log --setParameter enableTestCommands=1 --setParameter reshardingMinimumOperationDurationMillis=30000 --wiredTigerCacheSizeGB 1 --oplogSize 256
+mongod --bind_ip 0.0.0.0 --configsvr --replSet ConfigServerReplSet --logpath /var/log/mongodb/mongodb.log --setParameter enableTestCommands=1 --setParameter reshardingMinimumOperationDurationMillis=30000 --setParameter fassertOnLockTimeoutForStepUpDown=0 --wiredTigerCacheSizeGB 1 --oplogSize 256
# this cryptic statement keeps the container running.
tail -f /dev/null
diff --git a/buildscripts/antithesis/topologies/sharded_cluster/scripts/database_init.sh b/buildscripts/antithesis/topologies/sharded_cluster/scripts/database_init.sh
index 326e27769e3..2a634b0ce9a 100644
--- a/buildscripts/antithesis/topologies/sharded_cluster/scripts/database_init.sh
+++ b/buildscripts/antithesis/topologies/sharded_cluster/scripts/database_init.sh
@@ -1,4 +1,4 @@
-mongod --bind_ip 0.0.0.0 --shardsvr --replSet "$1" --logpath /var/log/mongodb/mongodb.log --oplogSize 256 --setParameter enableTestCommands=1 --setParameter enableElectionHandoff=0 --setParameter roleGraphInvalidationIsFatal=1 --setParameter receiveChunkWaitForRangeDeleterTimeoutMS=90000 --wiredTigerCacheSizeGB 1
+mongod --bind_ip 0.0.0.0 --shardsvr --replSet "$1" --logpath /var/log/mongodb/mongodb.log --oplogSize 256 --setParameter enableTestCommands=1 --setParameter enableElectionHandoff=0 --setParameter roleGraphInvalidationIsFatal=1 --setParameter receiveChunkWaitForRangeDeleterTimeoutMS=90000 --setParameter fassertOnLockTimeoutForStepUpDown=0 --wiredTigerCacheSizeGB 1
# this cryptic statement keeps the container running.
tail -f /dev/null
diff --git a/buildscripts/antithesis/topologies/sharded_cluster/scripts/mongos_init.sh b/buildscripts/antithesis/topologies/sharded_cluster/scripts/mongos_init.sh
index 674cab49843..49df9e67490 100755
--- a/buildscripts/antithesis/topologies/sharded_cluster/scripts/mongos_init.sh
+++ b/buildscripts/antithesis/topologies/sharded_cluster/scripts/mongos_init.sh
@@ -1,7 +1,7 @@
sleep 5s
mongo --host configsvr1 --port 27019 --eval "config={\"_id\" : \"ConfigServerReplSet\",\"configsvr\" : true,\"protocolVersion\" : 1,\"members\" : [{\"_id\" : 0,\"host\" : \"configsvr1:27019\"}, {\"_id\" : 1,\"host\" : \"configsvr2:27019\"}, {\"_id\" : 2,\"host\" : \"configsvr3:27019\"} ],\"settings\" : {\"chainingAllowed\" : false,\"electionTimeoutMillis\" : 2000, \"heartbeatTimeoutSecs\" : 1, \"catchUpTimeoutMillis\": 0}}; rs.initiate(config)"
-mongos --bind_ip 0.0.0.0 --configdb ConfigServerReplSet/configsvr1:27019,configsvr2:27019,configsvr3:27019 --logpath /var/log/mongodb/mongodb.log --setParameter enableTestCommands=1
+mongos --bind_ip 0.0.0.0 --configdb ConfigServerReplSet/configsvr1:27019,configsvr2:27019,configsvr3:27019 --logpath /var/log/mongodb/mongodb.log --setParameter enableTestCommands=1 --setParameter fassertOnLockTimeoutForStepUpDown=0
# this cryptic statement keeps the container running.
tail -f /dev/null