Skip to content

Commit

Permalink
to_squash
Browse files Browse the repository at this point in the history
  • Loading branch information
jdelgadoalfonso committed May 27, 2024
1 parent 43ff268 commit 6e51ef6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pingora-proxy/src/proxy_h1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,12 @@ impl<SV> HttpProxy<SV> {

match send_permit {
Ok(send_permit) => {
send_body_to_pipe(buf.take(), true, send_permit).await;
if let Err(e) = self
.send_body_to_pipe(session, buf.take(), true, send_permit, ctx)
.await
{
warn!("send_body_to_pipe: {e:?}");
}
break;
}
Err(ref _e) => {
Expand Down

0 comments on commit 6e51ef6

Please sign in to comment.