Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(app/test): minor tweaks to linkerd-app-test #3428

Merged
merged 7 commits into from
Dec 6, 2024
9 changes: 8 additions & 1 deletion linkerd/app/inbound/src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,14 @@ pub mod fuzz {
.header(header_name, header_value)
.body(Body::default())
{
let rsp = http_util::http_request(&mut client, req).await;
let rsp = client
.ready()
.await
.expect("HTTP client poll_ready failed")
.call(req)
.await
cratelyn marked this conversation as resolved.
Show resolved Hide resolved
.expect("HTTP client request failed");
tracing::info!(?rsp);
tracing::info!(?rsp);
if let Ok(rsp) = rsp {
let body = http_util::body_to_string(rsp.into_body()).await;
Expand Down
Loading
Loading