Skip to content

Commit

Permalink
fixup! Use heap indirection to manage type signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
olix0r committed Nov 10, 2023
1 parent 1da8f8d commit 19b97cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linkerd/app/inbound/src/http/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl<H> Inbound<H> {
.push_on_service(http::normalize_uri::MarkAbsoluteForm::layer())
.push_on_service(http::BoxResponse::layer())
.push(NewAccessLog::layer())
.arc_new_box_clone_http()
.arc_new_clone_http()
})
}

Expand Down Expand Up @@ -122,7 +122,7 @@ impl<H> Inbound<H> {
.check_new_new_service::<T, http::ClientHandle, http::Request<_>>()
.push(http::NewServeHttp::layer(h2_settings, rt.drain.clone()))
.check_new_service::<T, I>()
.arc_new_box_tcp()
.arc_new_tcp()
})
}
}
Expand Down

0 comments on commit 19b97cf

Please sign in to comment.