From 910b6a13694e496ee08c216ac265d0d5ddccd275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Sun, 19 May 2024 10:27:33 +0100 Subject: [PATCH] adding explicit 'unstable' path segment --- nym-api/src/node_status_api/routes.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nym-api/src/node_status_api/routes.rs b/nym-api/src/node_status_api/routes.rs index 7e4e8797e8..7f2f714a3f 100644 --- a/nym-api/src/node_status_api/routes.rs +++ b/nym-api/src/node_status_api/routes.rs @@ -393,7 +393,7 @@ pub mod unstable { } #[openapi(tag = "UNSTABLE - DO **NOT** USE")] - #[get("/mixnodes//test-results?")] + #[get("/mixnodes/unstable//test-results?")] pub async fn mixnode_test_results( mix_id: MixId, pagination: PaginationRequest, @@ -477,7 +477,7 @@ pub mod unstable { } #[openapi(tag = "UNSTABLE - DO **NOT** USE")] - #[get("/gateways//test-results?")] + #[get("/gateways/unstable//test-results?")] pub async fn gateway_test_results( gateway_identity: &str, pagination: PaginationRequest,