From: Kefu Chai Date: Thu, 10 Sep 2020 02:58:40 +0000 (+0800) Subject: test/crimson: use seastar::make_ready_future() X-Git-Tag: v17.0.0~1181^2~2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=457fe7202f97f393b5efd26e53eaa2aa4a1d162d;p=ceph.git 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 --- 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<>(); } };