Skip to content

Commit 5945c92

Browse files
authored
chore(app/trace-collector): remove Default bound (#3660)
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]>
1 parent 3597b90 commit 5945c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linkerd/app/src/trace_collector/oc_collector.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ where
2121
S: GrpcService<BoxBody> + Clone + Send + 'static,
2222
S::Error: Into<Error>,
2323
S::Future: Send,
24-
S::ResponseBody: Default + Body<Data = tonic::codegen::Bytes> + Send + 'static,
24+
S::ResponseBody: Body<Data = tonic::codegen::Bytes> + Send + 'static,
2525
<S::ResponseBody as Body>::Error: Into<Error> + Send,
2626
{
2727
let (span_sink, spans_rx) = mpsc::channel(crate::trace_collector::SPAN_BUFFER_CAPACITY);

0 commit comments

Comments
 (0)