summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/rollback_test_fixture.h
diff options
context:
space:
mode:
authorJudah Schvimer <judah@mongodb.com>2017-05-30 14:58:59 -0400
committerJudah Schvimer <judah@mongodb.com>2017-05-30 14:58:59 -0400
commit244ed4e90574c41c793a8f8e7fd3a1142cb1de9f (patch)
tree9b02a225c30ec0f129ac47a3d9d0984c8438be81 /src/mongo/db/repl/rollback_test_fixture.h
parent7b112f71fe551e92ae0a365f62fff402d4158035 (diff)
downloadmongo-244ed4e90574c41c793a8f8e7fd3a1142cb1de9f.tar.gz
SERVER-29254 Moved MinValid into ReplicationProcess
Diffstat (limited to 'src/mongo/db/repl/rollback_test_fixture.h')
-rw-r--r--src/mongo/db/repl/rollback_test_fixture.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/db/repl/rollback_test_fixture.h b/src/mongo/db/repl/rollback_test_fixture.h
index ece8cd682d2..d3e959ddc2f 100644
--- a/src/mongo/db/repl/rollback_test_fixture.h
+++ b/src/mongo/db/repl/rollback_test_fixture.h
@@ -29,6 +29,7 @@
#pragma once
#include "mongo/db/repl/replication_coordinator_mock.h"
+#include "mongo/db/repl/replication_process.h"
#include "mongo/db/repl/storage_interface_mock.h"
#include "mongo/db/service_context.h"
#include "mongo/db/service_context_d_test_fixture.h"
@@ -86,8 +87,10 @@ protected:
class ReplicationCoordinatorRollbackMock;
ReplicationCoordinatorRollbackMock* _coordinator = nullptr;
- // StorageInterface used to access minValid.
StorageInterfaceMock _storageInterface;
+
+ // ReplicationProcess used to access consistency markers.
+ std::unique_ptr<ReplicationProcess> _replicationProcess;
};
/**