diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2018-08-14 13:03:03 -0400 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2018-08-15 12:57:32 -0400 |
commit | fab6864f4edcae7bb304f79e601f1f62cc376a77 (patch) | |
tree | ab6dd5752b59d7af969ab193c24e47a3a36a4d07 /src/mongo/s/client | |
parent | f61c4e4e9960a00d8da16c1053cd702972f90995 (diff) | |
download | mongo-fab6864f4edcae7bb304f79e601f1f62cc376a77.tar.gz |
SERVER-29908 Fold the 'sharding_connection_hook' library into 'sharding_initialization'
... and also remove dependency of MongoS on the replication coordinator
Diffstat (limited to 'src/mongo/s/client')
-rw-r--r-- | src/mongo/s/client/SConscript | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mongo/s/client/SConscript b/src/mongo/s/client/SConscript index cd74bbc9923..5dbae27a390 100644 --- a/src/mongo/s/client/SConscript +++ b/src/mongo/s/client/SConscript @@ -31,21 +31,6 @@ env.CppUnitTest( ], ) -env.Library( - target='sharding_connection_hook', - source=[ - 'sharding_connection_hook.cpp', - 'sharding_network_connection_hook.cpp', - ], - LIBDEPS=[ - '$BUILD_DIR/mongo/s/coreshard', - '$BUILD_DIR/mongo/s/sharding_legacy_api', - ], - LIBDEPS_PRIVATE=[ - '$BUILD_DIR/mongo/db/auth/internal_user_auth', - ], -) - env.CppUnitTest( target='shard_registry_test', source=[ |