From 457fe7202f97f393b5efd26e53eaa2aa4a1d162d Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 10 Sep 2020 10:58:40 +0800 Subject: [PATCH] test/crimson: use seastar::make_ready_future() instead of seastar::now(). as seastar::now() was moved into seastar/util/laster.hh. this change is a leftover of aa28b51f3c5434253c1788927100fb0b6e41bdbb Signed-off-by: Kefu Chai --- src/test/crimson/test_config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/crimson/test_config.cc b/src/test/crimson/test_config.cc index 6735d27841e12..a8234b2deb83c 100644 --- a/src/test/crimson/test_config.cc +++ b/src/test/crimson/test_config.cc @@ -38,7 +38,7 @@ public: uint64_t get_num_changes() const { return num_changes; } seastar::future<> stop() { crimson::common::local_conf().remove_observer(this); - return seastar::now(); + return seastar::make_ready_future<>(); } }; -- 2.39.5