Skip to content

Commit 1da9cb4

Browse files
authored
Fix resiliency run command in quickstart (#2983)
Signed-off-by: Nick Greenfield <[email protected]> Signed-off-by: Nick Greenfield <[email protected]>
1 parent 9ee2e27 commit 1da9cb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

daprdocs/content/en/getting-started/quickstarts/resiliency/resiliency-state-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Run the `order-processor` service alongside a Dapr sidecar. In the `dapr run` co
8989
9090
9191
```bash
92-
dapr run --app-id order-processor ../config.yaml --components-path ../../../components/ -- python3
92+
dapr run --app-id order-processor --config ../config.yaml --components-path ../../../components/ -- python3
9393
```
9494

9595
Once the application has started, the `order-processor`service writes and reads `orderId` key/value pairs to the `statestore` Redis instance [defined in the `statestore.yaml` component]({{< ref "statemanagement-quickstart.md#statestoreyaml-component-file" >}}).
@@ -257,7 +257,7 @@ Run the `order-processor` service alongside a Dapr sidecar. In the `dapr run` co
257257
```
258258
259259
```bash
260-
dapr run --app-id order-processor ../config.yaml --components-path ../../../components/ -- npm start
260+
dapr run --app-id order-processor --config ../config.yaml --components-path ../../../components/ -- npm start
261261
```
262262
263263
Once the application has started, the `order-processor`service writes and reads `orderId` key/value pairs to the `statestore` Redis instance [defined in the `statestore.yaml` component]({{< ref "statemanagement-quickstart.md#statestoreyaml-component-file" >}}).

0 commit comments

Comments
 (0)