From e4f593b3dee7808d27c9db54c517ab198f5d9f89 Mon Sep 17 00:00:00 2001 From: Max Hirschhorn Date: Mon, 11 Feb 2019 18:52:28 -0500 Subject: SERVER-35551 Avoid restarting mongobridge processes. Changes ReplSetTest, RollbackTest, and RollbackTestDeluxe to avoid restarting the mongobridge process associated with the mongod process being restarted. This ensures that any partitioning which has been configured remains intact after the server is restarted. --- jstests/replsets/libs/rollback_test_deluxe.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jstests/replsets/libs/rollback_test_deluxe.js') diff --git a/jstests/replsets/libs/rollback_test_deluxe.js b/jstests/replsets/libs/rollback_test_deluxe.js index 0c4cb988dfc..b3b85de152d 100644 --- a/jstests/replsets/libs/rollback_test_deluxe.js +++ b/jstests/replsets/libs/rollback_test_deluxe.js @@ -572,7 +572,7 @@ function RollbackTestDeluxe(name = "FiveNodeDoubleRollbackTest", replSet) { } log(`Stopping node ${hostName} with signal ${signal}`); - rst.stop(nodeId, signal, opts); + rst.stop(nodeId, signal, opts, {forRestart: true}); log(`Restarting node ${hostName}`); const restart = true; -- cgit v1.2.1