summaryrefslogtreecommitdiff
path: root/src/mongo/db
diff options
context:
space:
mode:
authorJonathan Reams <jbreams@mongodb.com>2018-05-03 15:40:22 -0400
committerJonathan Reams <jbreams@mongodb.com>2018-05-16 14:16:09 -0400
commit2e330a0a33f271c6ac50441c2e7a8a1a6e776265 (patch)
tree08a346263be0f968e5a54caa59073c3948da332e /src/mongo/db
parentd646baf48e55f2e84ff811a0191ebf1e253ea9c6 (diff)
downloadmongo-2e330a0a33f271c6ac50441c2e7a8a1a6e776265.tar.gz
SERVER-34730 Delete NetworkInterfaceASIO
Diffstat (limited to 'src/mongo/db')
-rw-r--r--src/mongo/db/SConscript2
-rw-r--r--src/mongo/db/commands/SConscript2
-rw-r--r--src/mongo/db/nesting_depth_test.cpp4
-rw-r--r--src/mongo/db/repl/SConscript1
4 files changed, 6 insertions, 3 deletions
diff --git a/src/mongo/db/SConscript b/src/mongo/db/SConscript
index c48e38f0320..1d71169e527 100644
--- a/src/mongo/db/SConscript
+++ b/src/mongo/db/SConscript
@@ -1751,7 +1751,7 @@ asioEnv.CppIntegrationTest(
'nesting_depth_test.cpp',
],
LIBDEPS=[
- '$BUILD_DIR/mongo/executor/network_interface_asio_fixture',
+ '$BUILD_DIR/mongo/executor/network_interface_fixture',
],
)
diff --git a/src/mongo/db/commands/SConscript b/src/mongo/db/commands/SConscript
index 45c7506a5fc..27cdc331cfb 100644
--- a/src/mongo/db/commands/SConscript
+++ b/src/mongo/db/commands/SConscript
@@ -173,6 +173,7 @@ env.Library(
'$BUILD_DIR/mongo/db/commands',
'$BUILD_DIR/mongo/db/dbdirectclient',
'$BUILD_DIR/mongo/db/kill_sessions_local',
+ '$BUILD_DIR/mongo/executor/egress_tag_closer_manager',
],
)
@@ -307,6 +308,7 @@ env.Library(
'$BUILD_DIR/mongo/db/rw_concern_d',
'$BUILD_DIR/mongo/db/s/sharding_catalog_manager',
'$BUILD_DIR/mongo/s/sharding_legacy_api',
+ '$BUILD_DIR/mongo/util/net/ssl_manager',
'core',
'kill_common',
'mongod_fcv',
diff --git a/src/mongo/db/nesting_depth_test.cpp b/src/mongo/db/nesting_depth_test.cpp
index fd14418024d..b6d325d299e 100644
--- a/src/mongo/db/nesting_depth_test.cpp
+++ b/src/mongo/db/nesting_depth_test.cpp
@@ -34,13 +34,13 @@
#include "mongo/bson/bson_validate.h"
#include "mongo/bson/json.h"
#include "mongo/client/connection_string.h"
-#include "mongo/executor/network_interface_asio_integration_fixture.h"
+#include "mongo/executor/network_interface_integration_fixture.h"
#include "mongo/util/concurrency/thread_pool.h"
namespace mongo {
namespace executor {
namespace {
-class NestingDepthFixture : public NetworkInterfaceASIOIntegrationFixture {
+class NestingDepthFixture : public NetworkInterfaceIntegrationFixture {
public:
void setUp() final {
startNet();
diff --git a/src/mongo/db/repl/SConscript b/src/mongo/db/repl/SConscript
index 6b752b1d013..ba774d26058 100644
--- a/src/mongo/db/repl/SConscript
+++ b/src/mongo/db/repl/SConscript
@@ -1578,6 +1578,7 @@ env.Library(
],
LIBDEPS_PRIVATE=[
'$BUILD_DIR/mongo/db/commands/server_status',
+ '$BUILD_DIR/mongo/transport/message_compressor',
],
)