Skip to content

Commit 1f94f4b

Browse files
committed
fixes
1 parent 445a575 commit 1f94f4b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/test/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use crate::{
1212
ServiceMetrics,
1313
};
1414
use anyhow::Context as _;
15-
use async_trait::async_trait;
1615
use axum::body::Bytes;
1716
use axum::{body::Body, http::Request, response::Response as AxumResponse, Router};
1817
use fn_error_context::context;

src/web/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ async fn apply_middleware<C: Context>(
413413
Ok(router.layer(
414414
ServiceBuilder::new()
415415
.layer(TraceLayer::new_for_http())
416-
.layer(sentry_tower::NewSentryLayer::new_from_top())
416+
// FIXME: .layer(sentry_tower::NewSentryLayer::new_from_top())
417417
.layer(sentry_tower::SentryHttpLayer::with_transaction())
418418
.layer(middleware::from_fn(
419419
set_sentry_transaction_name_from_axum_route,

0 commit comments

Comments
 (0)