Skip to content

Commit f438985

Browse files
lovasoaclaude
andcommitted
fix clippy: remove unnecessary mut on response
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c2a18e4 commit f438985

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/webserver/oidc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ async fn execute_oidc_request_with_awc(
838838
req = req.insert_header((name.as_str(), value.to_str()?));
839839
}
840840
let (req_head, body) = request.into_parts();
841-
let mut response = req.send_body(body).await.map_err(|e| {
841+
let response = req.send_body(body).await.map_err(|e| {
842842
anyhow!(e.to_string()).context(format!(
843843
"Failed to send request: {} {}",
844844
&req_head.method, &req_head.uri

0 commit comments

Comments
 (0)