summaryrefslogtreecommitdiff
path: root/src/mongo/client
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2018-04-17 21:56:42 -0400
committerBenety Goh <benety@mongodb.com>2018-04-17 21:56:42 -0400
commita6411b4e7ac800272d7835fe77c6bc55516efa03 (patch)
tree2f960211abaa703603dd8f85353d9fdcb2eb6604 /src/mongo/client
parent91274b50a3f58f69ce9016e14628f490d1df29a2 (diff)
downloadmongo-a6411b4e7ac800272d7835fe77c6bc55516efa03.tar.gz
SERVER-34372 add ReplicationCoordinator::signalDropPendingCollectionsRemovedFromStorage()
Diffstat (limited to 'src/mongo/client')
-rw-r--r--src/mongo/client/embedded/replication_coordinator_embedded.cpp4
-rw-r--r--src/mongo/client/embedded/replication_coordinator_embedded.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/mongo/client/embedded/replication_coordinator_embedded.cpp b/src/mongo/client/embedded/replication_coordinator_embedded.cpp
index 2667506d914..e0dfc14ce22 100644
--- a/src/mongo/client/embedded/replication_coordinator_embedded.cpp
+++ b/src/mongo/client/embedded/replication_coordinator_embedded.cpp
@@ -437,5 +437,9 @@ void ReplicationCoordinatorEmbedded::setIndexPrefetchConfig(
UASSERT_NOT_IMPLEMENTED;
}
+void ReplicationCoordinatorEmbedded::signalDropPendingCollectionsRemovedFromStorage() {
+ UASSERT_NOT_IMPLEMENTED;
+}
+
} // namespace embedded
} // namespace mongo
diff --git a/src/mongo/client/embedded/replication_coordinator_embedded.h b/src/mongo/client/embedded/replication_coordinator_embedded.h
index 8ebd438ea46..d76387a5ca1 100644
--- a/src/mongo/client/embedded/replication_coordinator_embedded.h
+++ b/src/mongo/client/embedded/replication_coordinator_embedded.h
@@ -234,6 +234,8 @@ public:
Status abortCatchupIfNeeded() override;
+ void signalDropPendingCollectionsRemovedFromStorage() final;
+
private:
// Back pointer to the ServiceContext that has started the instance.
ServiceContext* const _service;