Skip to content

Commit fea32ea

Browse files
committed
fix
1 parent 20baf1a commit fea32ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infrastructure/applications/pretix/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ resource "aws_ecs_task_definition" "pretix" {
170170
retries = 3
171171
command = [
172172
"CMD-SHELL",
173-
"curl -f http://localhost/healthcheck/ || exit 1"
173+
"curl -f http://127.0.0.1/healthcheck/ || exit 1"
174174
]
175175
timeout = 3
176176
interval = 10

infrastructure/applications/pycon_backend/web_task.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ resource "aws_ecs_task_definition" "web" {
4949
retries = 3
5050
command = [
5151
"CMD-SHELL",
52-
"curl -f http://localhost:8000/health/ || exit 1"
52+
"curl -f http://127.0.0.1:8000/health/ || exit 1"
5353
]
5454
timeout = 3
5555
interval = 10

0 commit comments

Comments
 (0)