Skip to content

Commit cd67a77

Browse files
committed
Remove references to albums endpoint.
1 parent 1e7ead5 commit cd67a77

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/quickstart-scaling.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,10 @@ For more information, see [az containerapp logs](/cli/azure/containerapp/logs).
264264
Open a new bash shell using Windows Subsystem for Linux or a Linux virtual machine. Run the following command, replacing `<YOUR_CONTAINER_APP_FQDN>` with the fully qualified domain name for your container app that you saved from the [Create and deploy the container app](#create-and-deploy-the-container-app) section.
265265

266266
```bash
267-
seq 1 20 | xargs -Iname -P20 curl "<YOUR_CONTAINER_APP_FQDN>/albums"
267+
seq 1 20 | xargs -Iname -P20 curl "<YOUR_CONTAINER_APP_FQDN>"
268268
```
269269

270-
This command sends 20 concurrent requests to the `/albums` endpoint of your container app.
270+
This command sends 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.
@@ -285,7 +285,7 @@ For more information, see the documentation for:
285285
Open a new command prompt and enter PowerShell. Run the following commands, replacing `<YOUR_CONTAINER_APP_FQDN>` with the fully qualified domain name for your container app that you saved from the [Create and deploy the container app](#create-and-deploy-the-container-app) section.
286286

287287
```powershell
288-
$url="<YOUR_CONTAINER_APP_FQDN>/albums"
288+
$url="<YOUR_CONTAINER_APP_FQDN>"
289289
$Runspace = [runspacefactory]::CreateRunspacePool(1,20)
290290
$Runspace.Open()
291291
1..20 | % {
@@ -296,7 +296,7 @@ $Runspace.Open()
296296
}
297297
```
298298

299-
These commands send 20 asynchronous requests to the `albums` endpoint of your container app.
299+
These commands send 20 asynchronous requests to your container app.
300300

301301
- `[runspacefactory]::CreateRunspacePool(1,20)` creates a `RunspacePool` that allows up to 20 runspaces to run concurrently.
302302
- `1..20 | % { }` runs the code enclosed in the curly braces 20 times.

0 commit comments

Comments
 (0)