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
Copy file name to clipboardExpand all lines: workflows/go/sdk/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ dapr run -f .
68
68
4. Stop Dapr workflow with CTRL-C or:
69
69
70
70
```sh
71
-
dapr stop -f .
71
+
dapr stop -f .
72
72
```
73
73
74
74
### View workflow output with Zipkin
@@ -83,11 +83,11 @@ launched on running `dapr init`.
83
83
84
84
### What happened?
85
85
86
-
When you ran the above comands:
86
+
When you ran the above commands:
87
87
88
88
1. An OrderPayload is made containing one car.
89
89
2. A unique order ID for the workflow is generated (in the above example, `b4cb2687-1af0-4f8d-9659-eb6389c07ade`) and the workflow is scheduled.
90
-
3. The `NotifyActivity` workflow activity sends a notification saying an order for 10 cars has been received.
90
+
3. The `NotifyActivity` workflow activity sends a notification saying an order for 1 car has been received.
91
91
4. The `VerifyInventoryActivity` workflow activity checks the inventory data, determines if you can supply the ordered item, and responds with the number of cars in stock.
92
92
5. The total cost of the order is 5000, so the workflow will not call the `RequestApprovalActivity` activity.
93
93
6. The `ProcessPaymentActivity` workflow activity begins processing payment for order `b4cb2687-1af0-4f8d-9659-eb6389c07ade` and confirms if successful.
0 commit comments