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: daprdocs/content/en/developing-applications/building-blocks/service-invocation/howto-invoke-discover-services.md
You can also append a query string or a fragment to the end of the URL and Dapr will pass it through unchanged. This means that if you need to pass some additional arguments in your service invocation that aren't part of a payload or the path, you can do so by appending a `?` to the end of the URL, followed by the key/value pairs separated by `=` signs and delimited by `&`. For example:
414
414
415
415
```bash
416
-
curl 'http://dapr-app-id:checkout@localhost:3602/checkout/100?basket=1234&key=abc` -X POST
416
+
curl 'http://dapr-app-id:checkout@localhost:3602/checkout/100?basket=1234&key=abc' -X POST
For workflow components that support subscribing to external events, such as the DaprWorkflow engine, you can use the following "raise event"API to deliver a named event to a specific workflow instance.
338
338
339
-
```http
340
-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceID>/raiseEvent/<eventName>
@@ -346,14 +346,14 @@ POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceID>/r
346
346
347
347
To plan for down-time, wait for inputs, and more, you can pause and then resume a workflow. To pause a workflow with an ID `12345678` until triggered to resume, run:
348
348
349
-
```http
350
-
POST http://localhost:3500/v1.0/workflows/dapr/12345678/pause
@@ -362,16 +362,16 @@ The purge API can be used to permanently delete workflow metadata from the under
362
362
363
363
Only workflow instances in the COMPLETED, FAILED, or TERMINATED state can be purged. If the workflow is in any other state, calling purge returns an error.
364
364
365
-
```http
366
-
POST http://localhost:3500/v1.0/workflows/dapr/12345678/purge
Copy file name to clipboardExpand all lines: daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-template.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -305,7 +305,7 @@ The properties for the Multi-App Run template align with the `dapr run -k` CLI f
305
305
| `appMaxConcurrency` | N | The concurrency level of the application; default is unlimited | |
306
306
| `placementHostAddress` | N | Comma separated list of addresses for Dapr placement servers | `127.0.0.1:50057,127.0.0.1:50058` |
307
307
| `schedulerHostAddress` | N | Dapr Scheduler Service host address | `127.0.0.1:50006` |
308
-
| `appSSL` | N | Enable https when Dapr invokes the application | |
308
+
| `appSSL` | N | Enable HTTPS when Dapr invokes the application | |
309
309
| `maxBodySize` | N | Max size of the request body in MB. Set the value using size units (e.g., `16Mi` for 16MB). The default is `4Mi` | `16Mi` |
310
310
| `readBufferSize` | N | Max size of the HTTP read buffer in KB. This also limits the maximum size of HTTP headers. Set the value using size units, for example `32Ki` will support headers up to 32KB . Default is `4Ki` for 4KB | `32Ki` |
311
311
| `enableAppHealthCheck` | N | Enable the app health check on the application | `true`, `false` |
Copy file name to clipboardExpand all lines: daprdocs/content/en/operations/hosting/kubernetes/kubernetes-dapr-shared.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ No matter which deployment approach you choose, it is important to understand th
36
36
{{% /alert %}}
37
37
38
38
39
-
### `DeamonSet`(Per-node)
39
+
### `DaemonSet`(Per-node)
40
40
41
41
With Kubernetes `DaemonSet`, you can define applications that need to be deployed once per node in the cluster. This enables applications that are running on the same node to communicate with local Dapr APIs, no matter where the Kubernetes `Scheduler` schedules your workload.
0 commit comments