From bba44db4be036ea8b3d0197121fa644b121e0cbb Mon Sep 17 00:00:00 2001 From: Ricardo Niepel Date: Thu, 24 Oct 2019 14:54:50 +0200 Subject: [PATCH] Adding response sample for /v1.0/dapr/config (#189) Adding response sample for GET http://localhost:/v1.0/dapr/config Closing #184 --- reference/api/actors.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/reference/api/actors.md b/reference/api/actors.md index d27f395ad..52e602cd8 100644 --- a/reference/api/actors.md +++ b/reference/api/actors.md @@ -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.