Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
arealmaas committed Oct 8, 2024
1 parent cd6547d commit fceb5d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .azure/applications/web-api-eu/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ var probes = [
initialDelaySeconds: 2
type: 'Liveness'
httpGet: {
path: '/liveness'
path: '/health/liveness'
port: port
}
}
Expand All @@ -100,7 +100,7 @@ var probes = [
initialDelaySeconds: 2
type: 'Readiness'
httpGet: {
path: '/readiness'
path: '/health/readiness'
port: port
}
}
Expand All @@ -109,7 +109,7 @@ var probes = [
initialDelaySeconds: 2
type: 'Startup'
httpGet: {
path: '/startup'
path: '/health/startup'
port: port
}
}
Expand Down

0 comments on commit fceb5d9

Please sign in to comment.