Complete set of timing fixes for dapr stop issue in 1.13

Signed-off-by: Paul Yuknewicz <paulyuk@Pauls-MacBook-Pro-2.local>
This commit is contained in:
Paul Yuknewicz 2024-02-10 08:43:42 -08:00
parent cc28d1e2ce
commit 55ddb3c782
4 changed files with 10 additions and 6 deletions

View File

@ -74,8 +74,8 @@ sleep: 15
cd ./order-processor cd ./order-processor
dapr run --app-id order-processor --resources-path ../../../resources/ -- dotnet run dapr run --app-id order-processor --resources-path ../../../resources/ -- dotnet run
``` ```
<!-- END_STEP -->
2. Stop and clean up application processes 2. Stop and clean up application processes
dapr stop --app-id order-processor dapr stop --app-id order-processor
<!-- END_STEP -->

View File

@ -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 == Getting Order: Order { orderId = 3 }
== APP == Deleting Order: Order { orderId = 3 } == APP == Deleting Order: Order { orderId = 3 }
``` ```
<!-- END_STEP -->
2. Stop and clean up application processes 2. Stop and clean up application processes
```bash
dapr stop --app-id order-processor dapr stop --app-id order-processor
<!-- END_STEP --> ```

View File

@ -79,8 +79,9 @@ You're up and running! Both Dapr and your app logs will appear here.
== APP == Retrieved Order: "{\"orderId\":3}" == APP == Retrieved Order: "{\"orderId\":3}"
== APP == 2023/09/24 23:31:27 Deleted Order: {"orderId":3} == APP == 2023/09/24 23:31:27 Deleted Order: {"orderId":3}
``` ```
<!-- END_STEP -->
2. Stop and clean up application processes 2. Stop and clean up application processes
```bash
dapr stop --app-id order-processor dapr stop --app-id order-processor
```
<!-- END_STEP -->

View File

@ -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 == Retrieved Order: {"orderId":2}
== APP - order-processor == Deleted Order: {"orderId":2} == APP - order-processor == Deleted Order: {"orderId":2}
``` ```
<!-- END_STEP -->
2. Stop and clean up application processes 2. Stop and clean up application processes
```bash
dapr stop --app-id order-processor dapr stop --app-id order-processor
```
<!-- END_STEP -->