Skip to content

Commit fe359cc

Browse files
committed
Fix traffic gen.:
1 parent f7a54cc commit fe359cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

terraform/java/ecs/resources/main-service.json.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"command": [
120120
"sh",
121121
"-c",
122-
"while true; do wget -qO- http://localhost:8080/; sleep 10; done"
122+
"while true; do curl http://localhost:8080/; sleep 10; done"
123123
]
124124
}
125125
]

terraform/python/ecs/resources/main-service.json.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
"command": [
147147
"sh",
148148
"-c",
149-
"while true; do wget -qO- http://localhost:8080/; sleep 10; done"
149+
"while true; do curl http://localhost:8080/; sleep 10; done"
150150
]
151151
}
152152
]

0 commit comments

Comments
 (0)