From 543b7d33347ca722b541a066d4e3b211b9168419 Mon Sep 17 00:00:00 2001 From: chunmei-liu Date: Tue, 10 Jan 2023 16:48:55 -0800 Subject: [PATCH] crimson/os: make cyanstore not use proxy Signed-off-by: chunmei-liu --- src/crimson/os/futurized_store.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crimson/os/futurized_store.cc b/src/crimson/os/futurized_store.cc index 24f632b9cb790..b9542a50c604d 100644 --- a/src/crimson/os/futurized_store.cc +++ b/src/crimson/os/futurized_store.cc @@ -18,7 +18,7 @@ FuturizedStore::create(const std::string& type, if (type == "cyanstore") { using crimson::os::CyanStore; return seastar::make_ready_future>( - std::make_unique>(data)); + std::make_unique(data)); } else if (type == "seastore") { return crimson::os::seastore::make_seastore( data, values -- 2.39.5