From: Kefu Chai Date: Sun, 30 Aug 2020 09:56:48 +0000 (+0800) Subject: common/admin_socket: replace #warning with TODO X-Git-Tag: wip-pdonnell-testing-20200918.022351~206^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=fa69a02dc8f33f757879b318a94f011382a8310e;p=ceph-ci.git common/admin_socket: replace #warning with TODO less distracting when fixing compiling error / warnings this way Signed-off-by: Kefu Chai --- diff --git a/src/common/admin_socket.cc b/src/common/admin_socket.cc index 9f396542d77..a756e2f0c68 100644 --- a/src/common/admin_socket.cc +++ b/src/common/admin_socket.cc @@ -421,7 +421,7 @@ void AdminSocket::do_tell_queue() reply->set_tid(m->get_tid()); reply->set_data(outbl); #ifdef WITH_SEASTAR -#warning "fix message send with crimson" + // TODO: crimson: handle asok commmand from alien thread #else m->get_connection()->send_message(reply); #endif @@ -437,7 +437,7 @@ void AdminSocket::do_tell_queue() reply->set_tid(m->get_tid()); reply->set_data(outbl); #ifdef WITH_SEASTAR -#warning "fix message send with crimson" + // TODO: crimson: handle asok commmand from alien thread #else m->get_connection()->send_message(reply); #endif @@ -452,7 +452,7 @@ int AdminSocket::execute_command( bufferlist *outbl) { #ifdef WITH_SEASTAR -#warning "must implement admin socket blocking execute_command() for crimson" + // TODO: crimson: blocking execute_command() in alien thread return -ENOSYS; #else bool done = false;