From 525c8312da044cc1969720db7baf35256ae4abe2 Mon Sep 17 00:00:00 2001 From: David Herberth Date: Fri, 3 Oct 2025 15:06:55 +0200 Subject: [PATCH] ref(server): Remove non-integration otlp endpoints --- relay-server/src/endpoints/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/relay-server/src/endpoints/mod.rs b/relay-server/src/endpoints/mod.rs index dec338cfa0..22f08ef64e 100644 --- a/relay-server/src/endpoints/mod.rs +++ b/relay-server/src/endpoints/mod.rs @@ -87,9 +87,6 @@ pub fn routes(config: &Config) -> Router{ // configured by users or protocols may force a specific variant. let integration_routes = Router::new() .nest("/api/{project_id}/integration/otlp", integrations::otlp::routes(config)) - // Old, pre integration routes to be removed - .route("/api/{project_id}/otlp/v1/traces", integrations::otlp::traces::route(config)) - .route("/api/{project_id}/otlp/v1/traces/", integrations::otlp::traces::route(config)) .route_layer(middlewares::cors()); // NOTE: If you add a new (non-experimental) route here, please also list it in