mirror of https://github.com/mongodb/mongo
30 lines
750 B
JavaScript
30 lines
750 B
JavaScript
// Attempt to shut the server down as it is initializing replication, and confirm it doesn't crash.
|
|
//
|
|
import {ReplSetTest} from "jstests/libs/replsettest.js";
|
|
|
|
let ns = "test.coll";
|
|
|
|
let rst = new ReplSetTest({
|
|
nodes: 2,
|
|
});
|
|
|
|
let conf = rst.getReplSetConfig();
|
|
conf.members[1].votes = 0;
|
|
conf.members[1].priority = 0;
|
|
conf.members[1].hidden = true;
|
|
|
|
rst.startSet();
|
|
rst.initiate(conf);
|
|
rst.awaitReplication();
|
|
|
|
let secondary = rst.getSecondary();
|
|
rst.stop(secondary);
|
|
let program = rst.start(secondary, {
|
|
waitForConnect: false,
|
|
setParameter: "failpoint.shutdownAtStartup={mode:'alwaysOn'}",
|
|
});
|
|
// mongod should exit automatically, since failpoint was set.
|
|
let exitCode = waitProgram(program.pid);
|
|
assert.eq(0, exitCode);
|
|
rst.stopSet();
|