From: Vedansh Bhartia Date: Thu, 13 Jul 2023 11:58:24 +0000 (+0530) Subject: rgw: Add coverity annotation for missing break statement in switch X-Git-Tag: v19.0.0~821^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F52437%2Fhead;p=ceph.git rgw: Add coverity annotation for missing break statement in switch Signed-off-by: Vedansh Bhartia --- diff --git a/src/rgw/rgw_http_client.cc b/src/rgw/rgw_http_client.cc index 255db71a50d..6d587be01fe 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;