diff options
author | Sara Golemon <sara.golemon@mongodb.com> | 2019-01-07 18:09:07 +0000 |
---|---|---|
committer | Sara Golemon <sara.golemon@mongodb.com> | 2019-01-09 04:26:08 +0000 |
commit | ec104311f774165b5b77b41b78c89e4f29baaca9 (patch) | |
tree | 7a0bba7081b6d210a29c1fd506e9bdefa37529e3 /src/mongo/SConscript | |
parent | 1fd9bfa5867c3e7d6c1eebda53d5ccd8c637459e (diff) | |
download | mongo-ec104311f774165b5b77b41b78c89e4f29baaca9.tar.gz |
SERVER-38551 Convert message compressor options to IDL
Diffstat (limited to 'src/mongo/SConscript')
-rw-r--r-- | src/mongo/SConscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/SConscript b/src/mongo/SConscript index dd29b675bc4..30de27478b1 100644 --- a/src/mongo/SConscript +++ b/src/mongo/SConscript @@ -408,6 +408,7 @@ mongod = env.Program( 's/catalog/sharding_catalog_client_impl', 's/commands/shared_cluster_commands', 'scripting/scripting_server', + 'transport/message_compressor_options_server', 'transport/service_entry_point', 'transport/transport_layer_manager', 'util/clock_sources', @@ -485,6 +486,7 @@ mongos = env.Program( 's/sharding_initialization', 's/sharding_router_api', 's/query/cluster_cursor_cleanup_job', + 'transport/message_compressor_options_server', 'transport/service_entry_point', 'transport/transport_layer_manager', 'util/clock_sources', @@ -591,6 +593,7 @@ if not has_option('noshell') and usemozjs: ], LIBDEPS_PRIVATE=[ 'shell/shell_options_register', + 'transport/message_compressor_options_client', "$BUILD_DIR/mongo/client/connection_string", '$BUILD_DIR/mongo/util/net/ssl_options_client' if get_option('ssl') == 'on' else '', ], |