diff options
author | auto-revert-processor <dev-prod-dag@mongodb.com> | 2023-05-18 01:59:49 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2023-05-18 02:54:21 +0000 |
commit | a741f91c4c09913424751730aabccd594e94ab78 (patch) | |
tree | 93a23e52e3a8d077bea2f722912a88a6e270a8dc /src/mongo/db/repl/replication_coordinator_impl_test.cpp | |
parent | d7bf13d97da047abfe9098a6b5f98678e89cd987 (diff) | |
download | mongo-master.tar.gz |
Revert "SERVER-77224 Rename lock_state.h/.cpp to locker_impl.h/.cpp to match the class name"HEADmaster
This reverts commit de55cd2ac227dcc8cae2fd021abc291e86b2abb2.
Diffstat (limited to 'src/mongo/db/repl/replication_coordinator_impl_test.cpp')
-rw-r--r-- | src/mongo/db/repl/replication_coordinator_impl_test.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mongo/db/repl/replication_coordinator_impl_test.cpp b/src/mongo/db/repl/replication_coordinator_impl_test.cpp index adfa65af6f7..ae89606f267 100644 --- a/src/mongo/db/repl/replication_coordinator_impl_test.cpp +++ b/src/mongo/db/repl/replication_coordinator_impl_test.cpp @@ -27,6 +27,9 @@ * it in the license file. */ + +#include "mongo/platform/basic.h" + #include <functional> #include <iostream> #include <memory> @@ -35,7 +38,7 @@ #include "mongo/bson/util/bson_extract.h" #include "mongo/db/catalog/commit_quorum_options.h" -#include "mongo/db/concurrency/locker_impl.h" +#include "mongo/db/concurrency/lock_state.h" #include "mongo/db/concurrency/replication_state_transition_lock_guard.h" #include "mongo/db/read_write_concern_defaults.h" #include "mongo/db/repl/bson_extract_optime.h" @@ -80,6 +83,7 @@ #define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kTest + namespace mongo { namespace repl { namespace { |