Skip to content

Commit

Permalink
update deps + fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
GlenDC committed Nov 9, 2024
1 parent e17dc01 commit 866d06c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rama-http-backend/src/client/svc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ where

let resp = match &self.0 {
SendRequest::Http1(sender) => sender.lock().await.send_request(req).await,
SendRequest::Http2(sender) => sender.lock().await().send_request(req).await,
SendRequest::Http2(sender) => sender.lock().await.send_request(req).await,
}?;

Ok(resp.map(rama_http_types::Body::new))
Expand Down

0 comments on commit 866d06c

Please sign in to comment.