Skip to content

Commit a73119c

Browse files
committed
Minor edits.
1 parent cd67a77 commit a73119c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/container-apps/quickstart-scaling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,13 +267,13 @@ Open a new bash shell using Windows Subsystem for Linux or a Linux virtual machi
267267
seq 1 20 | xargs -Iname -P20 curl "<YOUR_CONTAINER_APP_FQDN>"
268268
```
269269

270-
This command sends 20 concurrent requests to your container app.
270+
These commands send 20 concurrent requests to your container app.
271271

272272
- `seq 1 20` generates a sequence from one to 20.
273273
- The pipe operator `|` sends this sequence to the `xargs` command.
274274
- `xargs` then runs `curl` with the specified URL.
275275
- The `-Iname` argument to `xargs` acts as a placeholder for the output of `seq`. This prevents the return value from being sent to the `curl` command.
276-
- The `-P4` argument instructs `xargs` to run up to four processes at a time.
276+
- The `-P20` argument instructs `xargs` to run up to 20 processes at a time.
277277

278278
For more information, see the documentation for:
279279
- [seq](https://www.man7.org/linux/man-pages/man1/seq.1.html)

0 commit comments

Comments
 (0)