0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-33587 remove deprecated rollback test fixture code

This commit is contained in:
Judah Schvimer 2018-04-30 17:32:34 -04:00
parent 3450ec365e
commit a12dad51c3

View File

@ -37,8 +37,6 @@ function RollbackTest(name = "RollbackTest", replSet) {
const State = {
kStopped: "kStopped",
kRollbackOps: "kRollbackOps",
// DEPRECATED: Remove this line after TIG-680.
kSyncSourceOps: "kSyncSourceOpsBeforeRollback",
kSyncSourceOpsBeforeRollback: "kSyncSourceOpsBeforeRollback",
kSyncSourceOpsDuringRollback: "kSyncSourceOpsDuringRollback",
kSteadyStateOps: "kSteadyStateOps",
@ -47,9 +45,7 @@ function RollbackTest(name = "RollbackTest", replSet) {
const AcceptableTransitions = {
[State.kStopped]: [],
[State.kRollbackOps]: [State.kSyncSourceOpsBeforeRollback],
// DEPRECATED: remove transition to State.kSteadyStateOps after TIG-680.
[State.kSyncSourceOpsBeforeRollback]:
[State.kSyncSourceOpsDuringRollback, State.kSteadyStateOps],
[State.kSyncSourceOpsBeforeRollback]: [State.kSyncSourceOpsDuringRollback],
[State.kSyncSourceOpsDuringRollback]: [State.kSteadyStateOps],
[State.kSteadyStateOps]: [State.kStopped, State.kRollbackOps],
};
@ -280,9 +276,6 @@ function RollbackTest(name = "RollbackTest", replSet) {
return curPrimary;
};
// DEPRECATED: remove this line after TIG-680.
this.transitionToSyncSourceOperations = this.transitionToSyncSourceOperationsBeforeRollback;
/**
* Transition to the third stage of rollback testing, where we reconnect the rollback node so
* it will start rolling back.