aboutsummaryrefslogtreecommitdiffstats
path: root/crates/router/src/processor
diff options
context:
space:
mode:
Diffstat (limited to 'crates/router/src/processor')
-rw-r--r--crates/router/src/processor/load.rs4
-rw-r--r--crates/router/src/processor/publish.rs4
-rw-r--r--crates/router/src/processor/reload.rs4
-rw-r--r--crates/router/src/processor/route.rs2
4 files changed, 7 insertions, 7 deletions
diff --git a/crates/router/src/processor/load.rs b/crates/router/src/processor/load.rs
index 9d3fd0d..b3fdf1c 100644
--- a/crates/router/src/processor/load.rs
+++ b/crates/router/src/processor/load.rs
@@ -1,7 +1,7 @@
use opentelemetry_semantic_conventions::attribute;
-use tracing_opentelemetry::OpenTelemetrySpanExt;
use tracing::{Instrument, debug, info, info_span, instrument, warn};
-use warden_core::{configuration::routing::RoutingConfiguration, google };
+use tracing_opentelemetry::OpenTelemetrySpanExt;
+use warden_core::{configuration::routing::RoutingConfiguration, google};
use crate::{cnfg::CACHE_KEY, state::AppHandle};
diff --git a/crates/router/src/processor/publish.rs b/crates/router/src/processor/publish.rs
index 16dcec8..277b674 100644
--- a/crates/router/src/processor/publish.rs
+++ b/crates/router/src/processor/publish.rs
@@ -1,7 +1,7 @@
-use opentelemetry::global;
+use opentelemetry::global;
use opentelemetry_semantic_conventions::attribute;
-use tracing_opentelemetry::OpenTelemetrySpanExt;
use tracing::{Instrument, Span, debug, info, info_span, warn};
+use tracing_opentelemetry::OpenTelemetrySpanExt;
use warden_core::{configuration::routing::RoutingConfiguration, message::Payload};
use warden_stack::tracing::telemetry::nats::injector;
diff --git a/crates/router/src/processor/reload.rs b/crates/router/src/processor/reload.rs
index c75465c..900b7ce 100644
--- a/crates/router/src/processor/reload.rs
+++ b/crates/router/src/processor/reload.rs
@@ -1,6 +1,6 @@
-use futures_util::StreamExt;
use async_nats::jetstream::consumer;
-use tracing::{trace, debug, error, info};
+use futures_util::StreamExt;
+use tracing::{debug, error, info, trace};
use uuid::Uuid;
use warden_core::configuration::ReloadEvent;
diff --git a/crates/router/src/processor/route.rs b/crates/router/src/processor/route.rs
index 404c2ca..d51a86a 100644
--- a/crates/router/src/processor/route.rs
+++ b/crates/router/src/processor/route.rs
@@ -3,7 +3,7 @@ use std::{collections::HashSet, sync::Arc};
use opentelemetry::global;
use prost::Message;
-use tracing::{info_span, instrument, trace, trace_span, warn, Instrument, Span};
+use tracing::{Instrument, Span, info_span, instrument, trace, trace_span, warn};
use tracing_opentelemetry::OpenTelemetrySpanExt;
use warden_core::{google, message::Payload};
use warden_stack::tracing::telemetry::nats;