diff options
author | Andrew Morrow <acm@mongodb.com> | 2017-12-28 16:50:44 -0500 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2017-12-29 11:16:37 -0500 |
commit | 39a57e323f2b763adb67b848a17c74cc233350c4 (patch) | |
tree | cb1a8c642f85af81daf2c76142fa6d3dec231617 /src/mongo/executor | |
parent | a0210b2e83641619eed60c8b19eb1abd7cf37fa1 (diff) | |
download | mongo-39a57e323f2b763adb67b848a17c74cc233350c4.tar.gz |
SERVER-32479 Make all library names unique
Diffstat (limited to 'src/mongo/executor')
-rw-r--r-- | src/mongo/executor/SConscript | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/executor/SConscript b/src/mongo/executor/SConscript index dd4205c5bf9..3311078ea58 100644 --- a/src/mongo/executor/SConscript +++ b/src/mongo/executor/SConscript @@ -86,7 +86,7 @@ env.Library('network_interface_mock', ]) env.Library( - target='connection_pool', + target='connection_pool_executor', source=[ 'connection_pool.cpp', ], @@ -105,7 +105,7 @@ env.CppUnitTest( 'connection_pool_test_fixture.cpp', ], LIBDEPS=[ - 'connection_pool', + 'connection_pool_executor', ], ) @@ -164,7 +164,7 @@ env.Library( '$BUILD_DIR/third_party/shim_asio', 'async_stream', 'async_timer_asio', - 'connection_pool', + 'connection_pool_executor', 'network_interface', 'task_executor_interface', ]) @@ -310,7 +310,7 @@ env.CppUnitTest( LIBDEPS=[ '$BUILD_DIR/mongo/util/concurrency/thread_pool_test_fixture', 'async_timer_mock', - 'connection_pool', + 'connection_pool_executor', 'network_interface_asio', 'network_interface_thread_pool', '$BUILD_DIR/mongo/executor/thread_pool_task_executor', |