Skip to content

Commit

Permalink
chore(app/trace-collector): remove Default bound (#3660)
Browse files Browse the repository at this point in the history
see #3651 and linkerd/linkerd2#8733.

#3651 missed this unused trait bound, which we want to loosen
to account for changes in hyper's api.

Signed-off-by: katelyn martin <[email protected]>
  • Loading branch information
cratelyn authored Feb 26, 2025
1 parent 3597b90 commit 5945c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linkerd/app/src/trace_collector/oc_collector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ where
S: GrpcService<BoxBody> + Clone + Send + 'static,
S::Error: Into<Error>,
S::Future: Send,
S::ResponseBody: Default + Body<Data = tonic::codegen::Bytes> + Send + 'static,
S::ResponseBody: Body<Data = tonic::codegen::Bytes> + Send + 'static,
<S::ResponseBody as Body>::Error: Into<Error> + Send,
{
let (span_sink, spans_rx) = mpsc::channel(crate::trace_collector::SPAN_BUFFER_CAPACITY);
Expand Down

0 comments on commit 5945c92

Please sign in to comment.