diff options
author | Nick Zolnierz <nicholas.zolnierz@mongodb.com> | 2018-03-02 10:49:23 -0500 |
---|---|---|
committer | Nick Zolnierz <nicholas.zolnierz@mongodb.com> | 2018-03-02 10:49:23 -0500 |
commit | fb3390f096192598f1bde7d3445e2580ccf0557e (patch) | |
tree | acb7ca00cad546a62fee185954a441585a81e5f1 /src/mongo/db/SConscript | |
parent | a8fddd07a740e959646995ef93139887b3b3eb5c (diff) | |
download | mongo-fb3390f096192598f1bde7d3445e2580ccf0557e.tar.gz |
SERVER-29519 Remove getGlobalReplicationCoordinator. Replace when getting decoration through service context (global if needed).
This reverts commit a8fddd07a740e959646995ef93139887b3b3eb5c.
Diffstat (limited to 'src/mongo/db/SConscript')
-rw-r--r-- | src/mongo/db/SConscript | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mongo/db/SConscript b/src/mongo/db/SConscript index 0145ab406d4..7ac4aa70a8b 100644 --- a/src/mongo/db/SConscript +++ b/src/mongo/db/SConscript @@ -922,7 +922,6 @@ env.Library( 'pipeline/pipeline', 'query/query_common', 'query/query_planner', - 'repl/repl_coordinator_global', 'repl/repl_coordinator_interface', 's/sharding', 'stats/serveronly_stats', @@ -989,7 +988,7 @@ env.Library( "repl/oplog_buffer_blocking_queue", "repl/oplog_buffer_collection", "repl/oplog_buffer_proxy", - "repl/repl_coordinator_global", + "repl/repl_coordinator_interface", "repl/repl_coordinator_impl", "repl/repl_settings", "repl/rs_rollback", @@ -1619,7 +1618,6 @@ env.Library( 'log_process_details.cpp', ], LIBDEPS=[ - 'repl/repl_coordinator_global', 'repl/repl_coordinator_interface', 'repl/replica_set_messages', 'server_options', |