Skip to content

Commit

Permalink
fix: Got the health endpoint wrong in the last commit (#723)
Browse files Browse the repository at this point in the history
This project actually uses /health not /ping for health check.

MAP-1670
  • Loading branch information
jimbali authored Oct 10, 2024
1 parent 8fba65a commit 3535f61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm_deploy/use-of-force/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ generic-service:

livenessProbe:
httpGet:
path: /ping
path: /health

readinessProbe:
httpGet:
path: /ping
path: /health

env:
TOKENVERIFICATION_API_ENABLED: true
Expand Down

0 comments on commit 3535f61

Please sign in to comment.