Skip to content

Commit

Permalink
chore(health): change health endpoint (#1615)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindtvedtsebastian authored Aug 15, 2024
1 parent caa077c commit d670bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async fn main() {
.route("/subscribe/:bid", get(subscribe))
.route("/refresh/:bid", post(trigger))
.route("/update", post(update))
.route("/actuator/health/liveness", get(check_health))
.route("/alive", get(check_health))
.route("/reset", post(reset_active))
.with_state(redis_clients)
.layer(cors);
Expand Down

0 comments on commit d670bab

Please sign in to comment.