Skip to content

Commit

Permalink
nit(opencensus): format use statements (linkerd#3652)
Browse files Browse the repository at this point in the history
this commit makes some superficial adjustments to import statements in
`linkerd-opencensus`. we have a convention of using crate-level symbol
groupings in `use` statements. this commit follows that convention.

Signed-off-by: katelyn martin <[email protected]>
  • Loading branch information
cratelyn authored Feb 25, 2025
1 parent 4df3d57 commit 9aca7b6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions linkerd/opencensus/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ use linkerd_error::Error;
use linkerd_trace_context::export::{ExportSpan, SpanKind};
use metrics::Registry;
pub use opencensus_proto as proto;
use opencensus_proto::agent::common::v1::Node;
use opencensus_proto::agent::trace::v1::{
trace_service_client::TraceServiceClient, ExportTraceServiceRequest,
use opencensus_proto::{
agent::{
common::v1::Node,
trace::v1::{trace_service_client::TraceServiceClient, ExportTraceServiceRequest},
},
trace::v1::{Span, TruncatableString},
};
use opencensus_proto::trace::v1::{Span, TruncatableString};
use std::collections::HashMap;
use tokio::{sync::mpsc, time};
use tokio_stream::wrappers::ReceiverStream;
Expand Down

0 comments on commit 9aca7b6

Please sign in to comment.