summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/cleanup_orphaned_cmd.cpp
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2022-09-21 08:33:16 +0200
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-09-21 15:00:29 +0000
commit5274f1afdb125e6415d13892d6f8a58a8dba66a3 (patch)
tree0466a9e1543ae3626d0564a9e537d7178c753985 /src/mongo/db/s/cleanup_orphaned_cmd.cpp
parent5272f5854d1954820e859ebbbaf0b030e80dc32c (diff)
downloadmongo-5274f1afdb125e6415d13892d6f8a58a8dba66a3.tar.gz
SERVER-69435 Cleanup includes and libraries
General cleanup in preparation for the larger incoming change
Diffstat (limited to 'src/mongo/db/s/cleanup_orphaned_cmd.cpp')
-rw-r--r--src/mongo/db/s/cleanup_orphaned_cmd.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mongo/db/s/cleanup_orphaned_cmd.cpp b/src/mongo/db/s/cleanup_orphaned_cmd.cpp
index 431a5b8000d..e3f2e4779e0 100644
--- a/src/mongo/db/s/cleanup_orphaned_cmd.cpp
+++ b/src/mongo/db/s/cleanup_orphaned_cmd.cpp
@@ -27,22 +27,14 @@
* it in the license file.
*/
-
-#include "mongo/platform/basic.h"
-
#include <boost/optional.hpp>
-#include <string>
#include "mongo/db/auth/action_type.h"
#include "mongo/db/auth/authorization_session.h"
-#include "mongo/db/auth/privilege.h"
#include "mongo/db/catalog_raii.h"
#include "mongo/db/commands.h"
#include "mongo/db/field_parser.h"
-#include "mongo/db/jsobj.h"
#include "mongo/db/namespace_string.h"
-#include "mongo/db/range_arithmetic.h"
-#include "mongo/db/s/chunk_move_write_concern_options.h"
#include "mongo/db/s/collection_sharding_runtime.h"
#include "mongo/db/s/migration_util.h"
#include "mongo/db/s/shard_filtering_metadata_refresh.h"
@@ -50,11 +42,9 @@
#include "mongo/db/s/sharding_state.h"
#include "mongo/db/service_context.h"
#include "mongo/logv2/log.h"
-#include "mongo/s/request_types/migration_secondary_throttle_options.h"
#define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kCommand
-
namespace mongo {
namespace {