github-actions[bot] commented on code in PR #42076: URL: https://github.com/apache/doris/pull/42076#discussion_r1805969767
########## be/src/http/action/health_action.cpp: ########## @@ -33,7 +33,7 @@ void HealthAction::handle(HttpRequest* req) { std::stringstream ss; ss << "{"; ss << "\"status\": \"OK\","; - ss << "\"msg\": \"To Be Added\""; + ss << "\"msg\": \"\""; Review Comment: warning: escaped string literal can be written as a raw string literal [modernize-raw-string-literal] ```suggestion ss << R"("msg": "")"; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org