From fbeafa67cbbceb5ce83881d0553a28edfbbf8dd9 Mon Sep 17 00:00:00 2001 From: Shlomi Livne Date: Tue, 12 May 2015 18:10:20 +0300 Subject: [PATCH] Add failure_dector stop() that will be called by distributed<>::stop Signed-off-by: Shlomi Livne --- gms/failure_detector.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gms/failure_detector.hh b/gms/failure_detector.hh index 580a3d050b..ddb29511c3 100644 --- a/gms/failure_detector.hh +++ b/gms/failure_detector.hh @@ -101,6 +101,10 @@ public: failure_detector() { } + future<> stop() { + return make_ready_future<>(); + } + sstring get_all_endpoint_states(); std::map get_simple_states();