mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
api: Remove dedicated failure_detector registration method
It's now empty and can be dropped Signed-off-by: Pavel Emelyanov <xemul@scylladb.com>
This commit is contained in:
@@ -264,10 +264,6 @@ future<> unset_hinted_handoff(http_context& ctx) {
|
||||
return ctx.http_server.set_routes([&ctx] (routes& r) { unset_hinted_handoff(ctx, r); });
|
||||
}
|
||||
|
||||
future<> set_server_gossip_settle(http_context& ctx, sharded<gms::gossiper>& g) {
|
||||
return make_ready_future<>();
|
||||
}
|
||||
|
||||
future<> set_server_compaction_manager(http_context& ctx) {
|
||||
auto rb = std::make_shared < api_registry_builder > (ctx.api_doc);
|
||||
|
||||
|
||||
@@ -117,7 +117,6 @@ future<> set_server_stream_manager(http_context& ctx, sharded<streaming::stream_
|
||||
future<> unset_server_stream_manager(http_context& ctx);
|
||||
future<> set_hinted_handoff(http_context& ctx, sharded<service::storage_proxy>& p);
|
||||
future<> unset_hinted_handoff(http_context& ctx);
|
||||
future<> set_server_gossip_settle(http_context& ctx, sharded<gms::gossiper>& g);
|
||||
future<> set_server_cache(http_context& ctx);
|
||||
future<> set_server_compaction_manager(http_context& ctx);
|
||||
future<> set_server_done(http_context& ctx);
|
||||
|
||||
1
main.cc
1
main.cc
@@ -1999,7 +1999,6 @@ To start the scylla server proper, simply invoke as: scylla server (or just scyl
|
||||
startlog.info("Waiting for gossip to settle before accepting client requests...");
|
||||
gossiper.local().wait_for_gossip_to_settle().get();
|
||||
}
|
||||
api::set_server_gossip_settle(ctx, gossiper).get();
|
||||
|
||||
supervisor::notify("allow replaying hints");
|
||||
proxy.invoke_on_all(&service::storage_proxy::allow_replaying_hints).get();
|
||||
|
||||
Reference in New Issue
Block a user