From 7071920e6be050bff4e6bfcd71f2496d64a9242d Mon Sep 17 00:00:00 2001 From: Nick Greenfield Date: Wed, 30 Nov 2022 15:09:42 -0800 Subject: [PATCH] Fix resiliency run command in quickstart Signed-off-by: Nick Greenfield --- .../quickstarts/resiliency/resiliency-state-quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/getting-started/quickstarts/resiliency/resiliency-state-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/resiliency/resiliency-state-quickstart.md index d7ccf1b87b5..ef34f4a69ae 100644 --- a/daprdocs/content/en/getting-started/quickstarts/resiliency/resiliency-state-quickstart.md +++ b/daprdocs/content/en/getting-started/quickstarts/resiliency/resiliency-state-quickstart.md @@ -89,7 +89,7 @@ Run the `order-processor` service alongside a Dapr sidecar. In the `dapr run` co ```bash -dapr run --app-id order-processor ../config.yaml --components-path ../../../components/ -- python3 +dapr run --app-id order-processor --config ../config.yaml --components-path ../../../components/ -- python3 ``` 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 ``` ```bash -dapr run --app-id order-processor ../config.yaml --components-path ../../../components/ -- npm start +dapr run --app-id order-processor --config ../config.yaml --components-path ../../../components/ -- npm start ``` 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" >}}).