diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2016-10-27 17:49:19 -0400 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2016-10-28 16:29:27 -0400 |
commit | cd9e8e08276dee0d6232042a46d2b78799e33787 (patch) | |
tree | c25c7d70d8745986d6ea8a1ba07068cd58df5383 /src/mongo/s/commands/SConscript | |
parent | 4a6e21b8c747877f32362deafcdad603b49b9475 (diff) | |
download | mongo-cd9e8e08276dee0d6232042a46d2b78799e33787.tar.gz |
SERVER-25665 Cleanup chunk metadata caching library dependencies
No functional changes. Removes unused includes and libraries and moves
cluster_write.cpp to be only part of the mongos commands since it is not
used elsewhere.
Diffstat (limited to 'src/mongo/s/commands/SConscript')
-rw-r--r-- | src/mongo/s/commands/SConscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/s/commands/SConscript b/src/mongo/s/commands/SConscript index 0234ce265c0..7722be731f1 100644 --- a/src/mongo/s/commands/SConscript +++ b/src/mongo/s/commands/SConscript @@ -31,8 +31,8 @@ env.Library( 'cluster_enable_sharding_cmd.cpp', 'cluster_explain.cpp', 'cluster_explain_cmd.cpp', - 'cluster_find_cmd.cpp', 'cluster_find_and_modify_cmd.cpp', + 'cluster_find_cmd.cpp', 'cluster_flush_router_config_cmd.cpp', 'cluster_fsync_cmd.cpp', 'cluster_ftdc_commands.cpp', @@ -43,8 +43,8 @@ env.Library( 'cluster_index_filter_cmd.cpp', 'cluster_is_db_grid_cmd.cpp', 'cluster_is_master_cmd.cpp', - 'cluster_killcursors_cmd.cpp', 'cluster_kill_op.cpp', + 'cluster_killcursors_cmd.cpp', 'cluster_list_databases_cmd.cpp', 'cluster_list_shards_cmd.cpp', 'cluster_map_reduce_cmd.cpp', @@ -67,6 +67,7 @@ env.Library( 'cluster_update_zone_key_range_cmd.cpp', 'cluster_user_management_commands.cpp', 'cluster_whats_my_uri_cmd.cpp', + 'cluster_write.cpp', 'cluster_write_cmd.cpp', 'commands_public.cpp', 'request.cpp', @@ -81,7 +82,6 @@ env.Library( '$BUILD_DIR/mongo/db/pipeline/aggregation', '$BUILD_DIR/mongo/db/views/views', '$BUILD_DIR/mongo/rpc/client_metadata', - '$BUILD_DIR/mongo/s/cluster_ops_impl', '$BUILD_DIR/mongo/s/coreshard', '$BUILD_DIR/mongo/s/mongoscore', ] |