summaryrefslogtreecommitdiff
path: root/src/mongo/embedded/replication_coordinator_embedded.cpp
diff options
context:
space:
mode:
authorMatthew Russotto <matthew.russotto@mongodb.com>2021-11-18 21:57:48 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-11-19 04:09:19 +0000
commit63b46f14867df2de8f823b9eb1b65bda3ac4b1c2 (patch)
tree0a7e1a2b82a3a1e64387a90f69e0ce88c4250937 /src/mongo/embedded/replication_coordinator_embedded.cpp
parent86b8db8755d10f86a28a843f501007fe05ff0324 (diff)
downloadmongo-63b46f14867df2de8f823b9eb1b65bda3ac4b1c2.tar.gz
SERVER-61593 Test command waitForMemberState should be interruptible
Diffstat (limited to 'src/mongo/embedded/replication_coordinator_embedded.cpp')
-rw-r--r--src/mongo/embedded/replication_coordinator_embedded.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/embedded/replication_coordinator_embedded.cpp b/src/mongo/embedded/replication_coordinator_embedded.cpp
index 5a117927635..7e574d26f2c 100644
--- a/src/mongo/embedded/replication_coordinator_embedded.cpp
+++ b/src/mongo/embedded/replication_coordinator_embedded.cpp
@@ -170,7 +170,9 @@ bool ReplicationCoordinatorEmbedded::canAcceptNonLocalWrites() const {
UASSERT_NOT_IMPLEMENTED;
}
-Status ReplicationCoordinatorEmbedded::waitForMemberState(MemberState, Milliseconds) {
+Status ReplicationCoordinatorEmbedded::waitForMemberState(Interruptible*,
+ MemberState,
+ Milliseconds) {
UASSERT_NOT_IMPLEMENTED;
}