Skip to content

Commit 597b7fd

Browse files
committedMay 3, 2024
Fix lint
1 parent e97c6ae commit 597b7fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎opentelemetry-sdk/src/trace/span_processor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ impl<R: RuntimeChannel> BatchSpanProcessorInternal<R> {
399399
})
400400
}
401401

402-
async fn run(mut self, mut messages: impl Stream<Item = BatchMessage> + Unpin + FusedStream) {
402+
async fn run(mut self, mut messages: impl Unpin + FusedStream<Item = BatchMessage>) {
403403
loop {
404404
select! {
405405
// FuturesUnordered implements Fuse intelligently such that it

0 commit comments

Comments
 (0)