You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once both services are running, the `order-processor` service will recieve orders from the `checkout`service continuously using Dapr's service invoke API.
109
+
Once both services are running, the `order-processor` service will receive orders from the `checkout`service continuously using Dapr's service invoke API.
110
110
111
111
##### `order-processor` output
112
112
@@ -116,7 +116,7 @@ Once both services are running, the `order-processor` service will recieve order
116
116
== APP == Order received: { orderId: 3 }
117
117
```
118
118
119
-
### Simulate ann application failure by stopping the `order-processor` service
119
+
### Simulate an application failure by stopping the `order-processor` service
120
120
121
121
Simulate a system failure by stopping the `order-processor` service running in your second terminal window.
122
122
@@ -159,39 +159,39 @@ Simulate the `order-processor` service recovering by restarting the application
159
159
##### Order Processor Service
160
160
161
161
```bash
162
-
dapr run --app-port 7001 --app-id order-processor --resources-path --app-protocol http --dapr-http-port 3501 -- dotnet run
162
+
dapr run --app-port 7001 --app-id order-processor --resources-path ../../../resources/ --app-protocol http --dapr-http-port 3501 -- dotnet run
163
163
```
164
164
165
165
### Go example
166
166
167
167
##### Order Processor Service
168
168
169
169
```bash
170
-
dapr run --app-port 6001 --app-id order-processor --resources-path --app-protocol http --dapr-http-port 3501 -- go run .
170
+
dapr run --app-port 6001 --app-id order-processor --resources-path ../../../resources/ --app-protocol http --dapr-http-port 3501 -- go run .
0 commit comments