Skip to content

Commit

Permalink
fix(server): move /v1/healthz to /healthz
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreese committed Nov 16, 2021
1 parent 4685513 commit c1d7a76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ where
authn.auth_url().to_owned(),
authn.token_url().to_owned(),
))
.boxed()
.or(health)
.boxed(),
)
.or(health)
.boxed()
.recover(filters::handle_invalid_request_path)
.recover(filters::handle_authn_rejection)
.recover(filters::handle_authz_rejection)
Expand Down

0 comments on commit c1d7a76

Please sign in to comment.