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:
Ricardo Niepel 2019-10-24 14:54:50 +02:00 committed by Aman Bhardwaj
parent 515d5892a5
commit bba44db4be
1 changed files with 12 additions and 0 deletions

View File

@ -387,6 +387,18 @@ curl -X GET http://localhost:5001/v1.0/dapr/config \
-H "Content-Type: application/json" -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 ### Activate the Actors
This endpoint lets you activate the actor. This endpoint lets you activate the actor.