Skip to content

Commit

Permalink
Complete set of timing fixes for dapr stop issue in 1.13
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Yuknewicz <paulyuk@Pauls-MacBook-Pro-2.local>
  • Loading branch information
Paul Yuknewicz authored and Paul Yuknewicz committed Feb 10, 2024
1 parent cc28d1e commit 55ddb3c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion state_management/csharp/http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ sleep: 15
cd ./order-processor
dapr run --app-id order-processor --resources-path ../../../resources/ -- dotnet run
```
<!-- END_STEP -->

2. Stop and clean up application processes

dapr stop --app-id order-processor
<!-- END_STEP -->
4 changes: 3 additions & 1 deletion state_management/csharp/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ You're up and running! Both Dapr and your app logs will appear here.
== APP == Getting Order: Order { orderId = 3 }
== APP == Deleting Order: Order { orderId = 3 }
```
<!-- END_STEP -->

2. Stop and clean up application processes

```bash
dapr stop --app-id order-processor
<!-- END_STEP -->
```
5 changes: 3 additions & 2 deletions state_management/go/http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ You're up and running! Both Dapr and your app logs will appear here.
== APP == Retrieved Order: "{\"orderId\":3}"
== APP == 2023/09/24 23:31:27 Deleted Order: {"orderId":3}
```
<!-- END_STEP -->

2. Stop and clean up application processes
```bash
dapr stop --app-id order-processor

<!-- END_STEP -->
```
5 changes: 3 additions & 2 deletions state_management/go/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ You're up and running! Both Dapr and your app logs will appear here.
== APP - order-processor == Retrieved Order: {"orderId":2}
== APP - order-processor == Deleted Order: {"orderId":2}
```
<!-- END_STEP -->

2. Stop and clean up application processes
```bash
dapr stop --app-id order-processor

<!-- END_STEP -->
```

0 comments on commit 55ddb3c

Please sign in to comment.