Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

fix!: The gateway should not call initialize_tracing #767

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions rust/noosphere-gateway/src/gateway.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ use crate::{
NameSystemConnectionType,
},
};
use noosphere_core::tracing::initialize_tracing;

const DEFAULT_BODY_LENGTH_LIMIT: usize = 100 /* MB */ * 1000 * 1000;

Expand All @@ -48,8 +47,6 @@ impl Gateway {
C: HasMutableSphereContext<S> + 'static,
S: Storage + 'static,
{
initialize_tracing(None);

let mut cors = CorsLayer::new();

if let Some(cors_origin) = cors_origin {
Expand Down
Loading