Skip to content

Commit 7cd256d

Browse files
committed
chore: make format happy.
1 parent d8e5bef commit 7cd256d

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

opentelemetry-jaeger/src/exporter/config/agent.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::exporter::agent::{AgentAsyncClientUdp, AgentSyncClientUdp};
22
use crate::exporter::config::{
33
build_config_and_process,
4-
common::{TransformationConfig, HasRequiredConfig},
4+
common::{HasRequiredConfig, TransformationConfig},
55
install_tracer_provider_and_get_tracer,
66
};
77
use crate::exporter::uploader::{AsyncUploader, SyncUploader, Uploader};
@@ -75,8 +75,8 @@ impl Default for AgentPipeline {
7575
// implement the seal trait
7676
impl HasRequiredConfig for AgentPipeline {
7777
fn set_transformation_config<T>(&mut self, f: T)
78-
where
79-
T: FnOnce(&mut TransformationConfig),
78+
where
79+
T: FnOnce(&mut TransformationConfig),
8080
{
8181
f(self.common_config.borrow_mut())
8282
}

opentelemetry-jaeger/src/exporter/config/collector/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::exporter::config::{
22
build_config_and_process,
3-
common::{TransformationConfig, HasRequiredConfig},
3+
common::{HasRequiredConfig, TransformationConfig},
44
install_tracer_provider_and_get_tracer,
55
};
66
use crate::exporter::uploader::{AsyncUploader, Uploader};
@@ -143,8 +143,8 @@ impl Default for CollectorPipeline {
143143
// implement the seal trait
144144
impl HasRequiredConfig for CollectorPipeline {
145145
fn set_transformation_config<T>(&mut self, f: T)
146-
where
147-
T: FnOnce(&mut TransformationConfig),
146+
where
147+
T: FnOnce(&mut TransformationConfig),
148148
{
149149
f(self.common_config.borrow_mut())
150150
}

opentelemetry-jaeger/src/exporter/config/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ pub mod collector;
2626
mod common {
2727
use opentelemetry::sdk;
2828

29-
3029
// configurations and overrides on how to transform OTLP spans to Jaeger spans.
3130
#[derive(Debug)]
3231
pub struct TransformationConfig {

0 commit comments

Comments
 (0)