summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/SConscript
diff options
context:
space:
mode:
authorVarun Ravichandran <varun.ravichandran@mongodb.com>2022-03-17 23:50:53 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-04-01 19:24:56 +0000
commitfe488bc9f33d81fbc77f179b4e77effc4f0844fc (patch)
tree8c81733111eb1d6266be62a734238462717255e8 /src/mongo/db/commands/SConscript
parent9fe5c85db8a6aa1432807d8c473360a81a9a2eaf (diff)
downloadmongo-fe488bc9f33d81fbc77f179b4e77effc4f0844fc.tar.gz
SERVER-62261: Implement getClusterParameter command on mongod and mongos
Diffstat (limited to 'src/mongo/db/commands/SConscript')
-rw-r--r--src/mongo/db/commands/SConscript9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mongo/db/commands/SConscript b/src/mongo/db/commands/SConscript
index d28bd5d286b..cd2f7b33a87 100644
--- a/src/mongo/db/commands/SConscript
+++ b/src/mongo/db/commands/SConscript
@@ -322,9 +322,9 @@ env.Library(
)
env.Library(
- target='set_cluster_parameter_idl',
+ target='cluster_server_parameter_cmds_idl',
source=[
- 'set_cluster_parameter.idl',
+ 'cluster_server_parameter_cmds.idl',
],
LIBDEPS=[
'$BUILD_DIR/mongo/base',
@@ -535,6 +535,7 @@ env.Library(
"dbcommands_d.cpp",
"dbhash.cpp",
"driverHelpers.cpp",
+ 'get_cluster_parameter_command.cpp',
"internal_rename_if_options_and_indexes_match_cmd.cpp",
"fle2_compact_cmd.cpp",
"map_reduce_command.cpp",
@@ -638,7 +639,7 @@ env.Library(
LIBDEPS=[
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/s/write_ops/cluster_write_ops',
- 'set_cluster_parameter_idl'
+ 'cluster_server_parameter_cmds_idl'
],
)
@@ -849,4 +850,4 @@ env.CppUnitTest(
"set_cluster_parameter_invocation",
"standalone",
],
-) \ No newline at end of file
+)