Merge pull request #979 from paulyuk/release-1.13

Fix tests broken by timing change
This commit is contained in:
Paul Yuknewicz 2024-02-10 12:04:26 -08:00 committed by GitHub
commit 334b35ad34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,5 @@
DAPR_CLI_VERSION: 1.12.0 DAPR_CLI_VERSION: 1.12.0
DAPR_RUNTIME_VERSION: 1.12.0 DAPR_RUNTIME_VERSION: 1.13.0-rc.2
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v${DAPR_CLI_VERSION}/install/ DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v${DAPR_CLI_VERSION}/install/
DAPR_DEFAULT_IMAGE_REGISTRY: ghcr DAPR_DEFAULT_IMAGE_REGISTRY: ghcr
MACOS_PYTHON_VERSION: 3.10 MACOS_PYTHON_VERSION: 3.10

View File

@ -2,7 +2,6 @@ apiVersion: dapr.io/v1alpha1
kind: Component kind: Component
metadata: metadata:
name: cron name: cron
namespace: quickstarts
spec: spec:
type: bindings.cron type: bindings.cron
version: v1 version: v1

View File

@ -2,7 +2,6 @@ apiVersion: dapr.io/v1alpha1
kind: Component kind: Component
metadata: metadata:
name: sqldb name: sqldb
namespace: quickstarts
spec: spec:
type: bindings.postgres type: bindings.postgres
version: v1 version: v1

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 -->

View File

@ -88,10 +88,11 @@ sleep: 60
```bash ```bash
dapr run --app-id order-processor --resources-path ../../../resources/ -- npm start dapr run --app-id order-processor --resources-path ../../../resources/ -- npm start
``` ```
<!-- END_STEP -->
2. Stop and cleanup the process 2. Stop and cleanup the process
```bash ```bash
dapr stop --app-id order-processor dapr stop --app-id order-processor
``` ```
<!-- END_STEP -->