From a590feb28ab8c59a83cbf17b0b33f48b7e82c6bb Mon Sep 17 00:00:00 2001 From: Vedansh Bhartia Date: Thu, 13 Jul 2023 17:28:24 +0530 Subject: [PATCH] rgw: Add coverity annotation for missing break statement in switch Signed-off-by: Vedansh Bhartia --- src/rgw/rgw_http_client.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rgw/rgw_http_client.cc b/src/rgw/rgw_http_client.cc index 255db71a50d2f..6d587be01fe75 100644 --- a/src/rgw/rgw_http_client.cc +++ b/src/rgw/rgw_http_client.cc @@ -1151,6 +1151,7 @@ void *RGWHTTPManager::reqs_thread_entry() case CURLE_OPERATION_TIMEDOUT: dout(0) << "WARNING: curl operation timed out, network average transfer speed less than " << cct->_conf->rgw_curl_low_speed_limit << " Bytes per second during " << cct->_conf->rgw_curl_low_speed_time << " seconds." << dendl; + // coverity[unterminated_case:SUPPRESS] default: dout(20) << "ERROR: msg->data.result=" << result << " req_data->id=" << id << " http_status=" << http_status << dendl; dout(20) << "ERROR: curl error: " << curl_easy_strerror((CURLcode)result) << " req_data->error_buf=" << req_data->error_buf << dendl; -- 2.39.5