diff options
author | Spencer T Brody <spencer@mongodb.com> | 2015-04-28 17:41:48 -0400 |
---|---|---|
committer | Spencer T Brody <spencer@mongodb.com> | 2015-05-14 17:13:59 -0400 |
commit | 4e5f3dd2ee37b118f9bfa5fb49adaa5a6b994cca (patch) | |
tree | 6209b86cf8b65693947e3d7a18392c7de3f92198 /src/mongo/SConscript | |
parent | b1140e1d7f3ed75161f9220581ce8475ce2ca2d3 (diff) | |
download | mongo-4e5f3dd2ee37b118f9bfa5fb49adaa5a6b994cca.tar.gz |
SERVER-18117 Add replset view back to http interface
Diffstat (limited to 'src/mongo/SConscript')
-rw-r--r-- | src/mongo/SConscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/SConscript b/src/mongo/SConscript index e0ac7b1c914..c3b18c27e06 100644 --- a/src/mongo/SConscript +++ b/src/mongo/SConscript @@ -1037,10 +1037,13 @@ env.Library("mongodandmongos", mongodAndMongosFiles, env.Library("mongodwebserver", [ "db/clientlistplugin.cpp", + "db/repl/replset_web_handler.cpp", "db/restapi.cpp", "db/stats/snapshots_webplugins.cpp", ], - LIBDEPS=["coredb", "mongodandmongos"]) + LIBDEPS=["coredb", + "mongodandmongos", + "$BUILD_DIR/mongo/db/repl/repl_coordinator_global"]) mongodOnlyFiles = [ "db/db.cpp", "db/mongod_options_init.cpp" ] |