Skip to content

Commit 2496f42

Browse files
committed
update to resources path
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 7d5415d commit 2496f42

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/container-apps/microservices-dapr-pubsub.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Start by running the `order-processor` subscriber service with Dapr.
7171
1. Run the `order-processor` service with Dapr.
7272

7373
```bash
74-
dapr run --app-port 5001 --app-id order-processing --app-protocol http --dapr-http-port 3501 --components-path ../components -- npm run start
74+
dapr run --app-port 5001 --app-id order-processing --app-protocol http --dapr-http-port 3501 --resources-path ../components -- npm run start
7575
```
7676

7777
1. In a new terminal window, from the sample's root directory, navigate to the `checkout` publisher service.
@@ -89,7 +89,7 @@ Start by running the `order-processor` subscriber service with Dapr.
8989
1. Run the `checkout` service with Dapr.
9090

9191
```bash
92-
dapr run --app-id checkout --app-protocol http --components-path ../components -- npm run start
92+
dapr run --app-id checkout --app-protocol http --resources-path ../components -- npm run start
9393
```
9494

9595
#### Expected output
@@ -283,7 +283,7 @@ Start by running the `order-processor` subscriber service with Dapr.
283283
1. Run the `order-processor` service with Dapr.
284284

285285
```bash
286-
dapr run --app-id order-processor --components-path ../components/ --app-port 5001 -- python3 app.py
286+
dapr run --app-id order-processor --resources-path ../components/ --app-port 5001 -- python3 app.py
287287
```
288288

289289
1. In a new terminal window, from the sample's root directory, navigate to the `checkout` publisher service.
@@ -301,7 +301,7 @@ Start by running the `order-processor` subscriber service with Dapr.
301301
1. Run the `checkout` service with Dapr.
302302

303303
```bash
304-
dapr run --app-id checkout --components-path ../components/ -- python3 app.py
304+
dapr run --app-id checkout --resources-path ../components/ -- python3 app.py
305305
```
306306

307307
#### Expected output
@@ -495,7 +495,7 @@ Start by running the `order-processor` subscriber service with Dapr.
495495
1. Run the `order-processor` service with Dapr.
496496

497497
```bash
498-
dapr run --app-id order-processor --components-path ../components/ --app-port 7001 -- dotnet run --project .
498+
dapr run --app-id order-processor --resources-path ../components/ --app-port 7001 -- dotnet run --project .
499499
```
500500

501501
1. In a new terminal window, from the sample's root directory, navigate to the `checkout` publisher service.
@@ -513,7 +513,7 @@ Start by running the `order-processor` subscriber service with Dapr.
513513
1. Run the `checkout` service with Dapr.
514514

515515
```bash
516-
dapr run --app-id checkout --components-path ../components/ -- dotnet run --project .
516+
dapr run --app-id checkout --resources-path ../components/ -- dotnet run --project .
517517
```
518518

519519
#### Expected output

0 commit comments

Comments
 (0)