Skip to content

Commit 054910d

Browse files
committed
attempt catch all, no traffic apparently
Signed-off-by: Brian L. Troutwine <[email protected]>
1 parent 3396ed8 commit 054910d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

integration/ducks/src/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,9 @@ impl DucksTarget {
249249
debug!("HTTP listener active");
250250
HTTP_COUNTERS.get_or_init(|| Arc::new(Mutex::new(HttpCounters::default())));
251251

252-
let app = Router::new().route("/*path", any(req_handle));
252+
let app = Router::new()
253+
.route("/", any(req_handle))
254+
.route("/*path", any(req_handle));
253255

254256
axum_server::bind(addr)
255257
.serve(app.into_make_service())

0 commit comments

Comments
 (0)