From 32ebbce815c146c0482f30be230c83406e00f01e Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 11 Apr 2019 21:47:29 +0800 Subject: [PATCH] crimson/mon: remove "#warning" in v1 implementation since we've implemented the v2 support, these reminders are not needed anymore. Signed-off-by: Kefu Chai --- src/crimson/mon/MonClient.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/crimson/mon/MonClient.cc b/src/crimson/mon/MonClient.cc index a5fcfcd09f6..c9e590a3a33 100644 --- a/src/crimson/mon/MonClient.cc +++ b/src/crimson/mon/MonClient.cc @@ -208,7 +208,6 @@ seastar::future Connection::do_auth() reply = {}; auto p = m->result_bl.cbegin(); auto ret = auth->handle_response(m->result, p, -#warning fix crimson: session_key, connection_secret nullptr, nullptr); if (ret != 0 && ret != -EAGAIN) { throw std::system_error(make_error_code( @@ -239,7 +238,6 @@ Connection::authenticate_v1(epoch_t epoch, global_id = m->global_id; switch (auto p = m->result_bl.cbegin(); auth->handle_response(m->result, p, -#warning fix crimson: session_key, connection_secret nullptr, nullptr)) { case 0: // none -- 2.39.5