summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2021-09-09 10:46:29 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-09-09 15:34:18 +0000
commitefb78c8c1a261bbde95ad046b79588176329d90b (patch)
treea1b7b7c9c59ce0d1a1352e146e511211ee437f28
parent6d2d8a296b9e1dcb14c0e794f6d3c7f492a883fe (diff)
downloadmongo-efb78c8c1a261bbde95ad046b79588176329d90b.tar.gz
SERVER-59739 rename create_indexes_idl library
-rw-r--r--src/mongo/db/SConscript6
-rw-r--r--src/mongo/db/commands/SConscript2
-rw-r--r--src/mongo/db/timeseries/SConscript2
-rw-r--r--src/mongo/s/commands/SConscript2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/mongo/db/SConscript b/src/mongo/db/SConscript
index d1d633ef8bd..63b8da30547 100644
--- a/src/mongo/db/SConscript
+++ b/src/mongo/db/SConscript
@@ -607,7 +607,7 @@ env.Library(
'auth/auth',
'commands/server_status_core',
'commands/test_commands_enabled',
- 'create_indexes_idl',
+ 'index_commands_idl',
'namespace_string',
],
)
@@ -1450,7 +1450,7 @@ env.Library(
)
env.Library(
- target='create_indexes_idl',
+ target='index_commands_idl',
source=[
'create_indexes.idl',
],
@@ -1474,7 +1474,7 @@ env.Library(
'logical_session_id_helpers',
],
LIBDEPS_PRIVATE=[
- 'create_indexes_idl',
+ 'index_commands_idl',
],
)
diff --git a/src/mongo/db/commands/SConscript b/src/mongo/db/commands/SConscript
index 35bd60b95b8..6fc75633ff9 100644
--- a/src/mongo/db/commands/SConscript
+++ b/src/mongo/db/commands/SConscript
@@ -345,9 +345,9 @@ env.Library(
'$BUILD_DIR/mongo/db/commands',
'$BUILD_DIR/mongo/db/concurrency/lock_manager',
'$BUILD_DIR/mongo/db/concurrency/write_conflict_exception',
- '$BUILD_DIR/mongo/db/create_indexes_idl',
'$BUILD_DIR/mongo/db/curop_failpoint_helpers',
'$BUILD_DIR/mongo/db/index_builds_coordinator_interface',
+ '$BUILD_DIR/mongo/db/index_commands_idl',
'$BUILD_DIR/mongo/db/ops/write_ops_exec',
'$BUILD_DIR/mongo/db/pipeline/aggregation_request_helper',
'$BUILD_DIR/mongo/db/pipeline/process_interface/mongo_process_interface',
diff --git a/src/mongo/db/timeseries/SConscript b/src/mongo/db/timeseries/SConscript
index 43c00f7a121..f5819b3f20d 100644
--- a/src/mongo/db/timeseries/SConscript
+++ b/src/mongo/db/timeseries/SConscript
@@ -51,8 +51,8 @@ env.Library(
],
LIBDEPS_PRIVATE=[
'$BUILD_DIR/mongo/db/commands',
- '$BUILD_DIR/mongo/db/create_indexes_idl',
'$BUILD_DIR/mongo/db/index/index_descriptor',
+ '$BUILD_DIR/mongo/db/index_commands_idl',
'$BUILD_DIR/mongo/db/index_names',
'$BUILD_DIR/mongo/db/namespace_string',
'$BUILD_DIR/mongo/db/storage/storage_options',
diff --git a/src/mongo/s/commands/SConscript b/src/mongo/s/commands/SConscript
index b27608804e6..0a374320061 100644
--- a/src/mongo/s/commands/SConscript
+++ b/src/mongo/s/commands/SConscript
@@ -131,8 +131,8 @@ env.Library(
'$BUILD_DIR/mongo/db/commands/shutdown_idl',
'$BUILD_DIR/mongo/db/commands/test_commands_enabled',
'$BUILD_DIR/mongo/db/commands/validate_db_metadata_command',
- '$BUILD_DIR/mongo/db/create_indexes_idl',
'$BUILD_DIR/mongo/db/ftdc/ftdc_server',
+ '$BUILD_DIR/mongo/db/index_commands_idl',
'$BUILD_DIR/mongo/db/initialize_api_parameters',
'$BUILD_DIR/mongo/db/logical_session_cache_impl',
'$BUILD_DIR/mongo/db/pipeline/aggregation',