Skip to content

Commit

Permalink
attempt catch all, no traffic apparently
Browse files Browse the repository at this point in the history
Signed-off-by: Brian L. Troutwine <[email protected]>
  • Loading branch information
blt committed Dec 23, 2024
1 parent 3db9732 commit 387efe2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion integration/ducks/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 387efe2

Please sign in to comment.