Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jkarneges committed May 3, 2024
1 parent 29b9d9c commit 5d9ec87
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3465,7 +3465,7 @@ where
refresh_stream_timeout,
req_body,
&mut zsess_in,
&zsess_out,
zsess_out,
)
.await?;
}
Expand Down Expand Up @@ -3493,7 +3493,7 @@ where
| zhttppacket::ResponsePacket::Error(_) => break zresp,
_ => {
// ABR: handle_other
handle_other(zresp, &mut zsess_in, &zsess_out).await?;
handle_other(zresp, &mut zsess_in, zsess_out).await?;
}
}
}
Expand Down Expand Up @@ -3583,7 +3583,7 @@ where
)));
} else {
// ABR: handle_other
return Err(handle_other(zresp, &mut zsess_in, &zsess_out)
return Err(handle_other(zresp, &mut zsess_in, zsess_out)
.await
.unwrap_err());
}
Expand Down Expand Up @@ -3732,7 +3732,7 @@ where
}
_ => {
// ABR: handle_other
handle_other(zresp, &mut zsess_in, &zsess_out).await?;
handle_other(zresp, &mut zsess_in, zsess_out).await?;
}
}
}
Expand Down

0 comments on commit 5d9ec87

Please sign in to comment.