review fixes

This commit is contained in:
mohandasspat 2022-08-12 12:44:14 +05:30
parent 93daa4c464
commit 225d9936ed

View File

@ -294,8 +294,7 @@ pub async fn get_metrics(
.encode(&prometheus::gather(), &mut buffer)
.expect("Failed to encode metrics");
let response = String::from_utf8(buffer.clone()).expect("Failed to convert bytes to string");
buffer.clear();
let response = String::from_utf8(buffer).expect("Failed to convert bytes to string");
Ok(HttpResponse::Ok()
.insert_header(header::ContentType(mime::TEXT_PLAIN))