Skip to content

Commit

Permalink
chore(health): default health endpoints (#1605)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindtvedtsebastian authored Aug 1, 2024
1 parent 5f4e6a2 commit b62b358
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion backend/helm/backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ common:
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
path: "/health"
readinessProbe:
tcpSocket:
port: 3000
Expand Down
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("/health", get(check_health))
.route("/actuator/health/liveness", get(check_health))
.route("/reset", post(reset_active))
.with_state(redis_clients)
.layer(cors);
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion next-tavla/helm/tavla/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ common:
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
path: '/health'
readinessProbe:
tcpSocket:
port: 3000
Expand Down

0 comments on commit b62b358

Please sign in to comment.