summaryrefslogtreecommitdiff
path: root/src/mongo/executor/SConscript
diff options
context:
space:
mode:
authorSara Golemon <sara.golemon@mongodb.com>2018-08-06 20:04:53 +0000
committerSara Golemon <sara.golemon@mongodb.com>2018-08-06 21:45:09 +0000
commit98dc4d98744a8da6567754345eb906ed01f5486f (patch)
tree68689cf559e25c1fbb00e4d85849c54b8bbed961 /src/mongo/executor/SConscript
parent34f4a07baf2e164f604ce53fd092b7dc1792e9db (diff)
downloadmongo-98dc4d98744a8da6567754345eb906ed01f5486f.tar.gz
SERVER-36292 Fix thread_pool_task_executor dependency
Diffstat (limited to 'src/mongo/executor/SConscript')
-rw-r--r--src/mongo/executor/SConscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/executor/SConscript b/src/mongo/executor/SConscript
index 2b3286f9d0d..af9be6312b1 100644
--- a/src/mongo/executor/SConscript
+++ b/src/mongo/executor/SConscript
@@ -181,10 +181,10 @@ env.Library(
'network_interface_factory.cpp',
],
LIBDEPS=[
- 'network_interface',
'connection_pool_executor',
],
LIBDEPS_PRIVATE=[
+ 'network_interface',
'network_interface_tl',
'egress_tag_closer_manager',
])
@@ -212,6 +212,9 @@ env.Library(
'task_executor_interface',
'$BUILD_DIR/mongo/util/fail_point',
'$BUILD_DIR/mongo/db/service_context',
+ ],
+ LIBDEPS_PRIVATE=[
+ 'network_interface',
]
)