Skip to content

Commit a5f77c0

Browse files
authored
Merge branch 'v1.16' into my-fix-v1.16
2 parents 18acd01 + 7cf5933 commit a5f77c0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-route-messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Match deposits greater than $10,000:
271271
event.type == "deposit" && int(event.data.amount) > 10000
272272
```
273273
{{% alert title="Note" color="primary" %}}
274-
By default the numeric values ​​are written as double-precision floating-point. There are no automatic arithmetic conversions for numeric values. In this case, if `event.data.amount` is not cast as integer, the match is not performed. For more information, see the [CEL documentation](https://github.com/google/cel-spec/blob/master/doc/langdef).
274+
By default the numeric values ​​are written as double-precision floating-point. There are no automatic arithmetic conversions for numeric values. In this case, if `event.data.amount` is not cast as integer, the match is not performed. For more information, see the [CEL documentation](https://github.com/google/cel-spec/blob/master/doc/langdef.md).
275275
{{% /alert %}}
276276

277277
Match multiple versions of a message:

daprdocs/content/en/operations/resiliency/health-checks/sidecar-health.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ On the other hand, as shown by the green boundary lines in the diagram above, th
4242
- The Dapr HTTP port is available; _but,_
4343
- The app channel is not yet established.
4444

45-
In the Dapr SDKs, the `waitForSidecar`/`wait_until_ready` method (depending on [which SDK you use]({{% ref "#sdks-supporting-outbound-health-endpoint" %}})) is used for this specific check with the `v1.0/healthz/outbound` endpoint. Using this behavior, instead of waiting for the app channel to be available (see: red boundary lines) with the `v1.0/healthz/` endpoint, Dapr waits for a successful response from `v1.0/healthz/outbound`. This approach enables your application to perform calls on the Dapr sidecar APIs before the app channel is initalized - for example, reading secrets with the secrets API.
45+
In the Dapr SDKs, the `waitForSidecar` method (depending on [which SDK you use]({{% ref "#sdks-supporting-outbound-health-endpoint" %}})) is used for this specific check with the `v1.0/healthz/outbound` endpoint. Using this behavior, instead of waiting for the app channel to be available (see: red boundary lines) with the `v1.0/healthz/` endpoint, Dapr waits for a successful response from `v1.0/healthz/outbound`. This approach enables your application to perform calls on the Dapr sidecar APIs before the app channel is initalized - for example, reading secrets with the secrets API.
4646

47-
If you are using the `waitForSidecar`/`wait_until_ready` method on the SDKs, then the correct initialization is performed. Otherwise, you can call the `v1.0/healthz/outbound` endpoint during initalization, and if successesful, you can call the Dapr sidecar APIs.
47+
If you are using the `waitForSidecar` method on the SDKs, then the correct initialization is performed. Otherwise, you can call the `v1.0/healthz/outbound` endpoint during initalization, and if successesful, you can call the Dapr sidecar APIs.
4848

4949
### SDKs supporting outbound health endpoint
5050
Currently, the `v1.0/healthz/outbound` endpoint is supported in the:

0 commit comments

Comments
 (0)