From 0e9df4eaf8d59e3343b39e3ff7d288b6faa20e5f Mon Sep 17 00:00:00 2001 From: Gleb Natapov Date: Tue, 29 Oct 2019 12:27:25 +0200 Subject: [PATCH] lwt: mark lwt as experimental We may want to change paxos tables format and change internode protocol, so hide lwt behind experimental flag for now. Message-Id: <20191029102725.GM2866@scylladb.com> --- service/storage_proxy.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/service/storage_proxy.cc b/service/storage_proxy.cc index 0c5fd578af..f67f909bf5 100644 --- a/service/storage_proxy.cc +++ b/service/storage_proxy.cc @@ -704,6 +704,7 @@ static future> slee * nodes have seen the most recent commit. Otherwise, return null. */ future paxos_response_handler::begin_and_repair_paxos(client_state& cs, bool is_write) { + _proxy->get_db().local().get_config().check_experimental("Paxos"); return do_with(unsigned(0), api::timestamp_type(0), shared_from_this(), [this, &cs] (unsigned& contentions, api::timestamp_type& min_timestamp_micros_to_use, shared_ptr& prh) { return repeat_until_value([this, &contentions, &cs, &min_timestamp_micros_to_use] {