mirror of https://github.com/dapr/docs.git
Adding response sample for /v1.0/dapr/config (#189)
Adding response sample for GET http://localhost:<appPort>/v1.0/dapr/config Closing #184
This commit is contained in:
parent
515d5892a5
commit
bba44db4be
|
@ -387,6 +387,18 @@ curl -X GET http://localhost:5001/v1.0/dapr/config \
|
|||
-H "Content-Type: application/json"
|
||||
```
|
||||
|
||||
> The above command returns the config (all fields are optional):
|
||||
|
||||
```json
|
||||
{
|
||||
"entities":["actorType1", "actorType2"],
|
||||
"actorIdleTimeout": "1h",
|
||||
"actorScanInterval": "30s",
|
||||
"drainOngoingCallTimeout": "30s",
|
||||
"drainRebalancedActors": true
|
||||
}
|
||||
```
|
||||
|
||||
### Activate the Actors
|
||||
|
||||
This endpoint lets you activate the actor.
|
||||
|
|
Loading…
Reference in New Issue