From 1c0cc5aa4a828a797ec3443ea9f9ad32166a6c48 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Mon, 23 Dec 2024 14:01:56 -0800 Subject: [PATCH] attempt catch all, no traffic apparently Signed-off-by: Brian L. Troutwine --- integration/ducks/src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integration/ducks/src/main.rs b/integration/ducks/src/main.rs index 205ea4413..dd61986ec 100644 --- a/integration/ducks/src/main.rs +++ b/integration/ducks/src/main.rs @@ -249,7 +249,9 @@ impl DucksTarget { debug!("HTTP listener active"); HTTP_COUNTERS.get_or_init(|| Arc::new(Mutex::new(HttpCounters::default()))); - let app = Router::new().route("/*path", any(req_handle)); + let app = Router::new() + .route("/", any(req_handle)) + .route("/*path", any(req_handle)); axum_server::bind(addr) .serve(app.into_make_service())