From 4b82a04c52bd204eac0672ba71f7e3cca8218eb9 Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Thu, 18 May 2023 13:17:20 -0400 Subject: [PATCH] add note for timeouts and intervals formats Signed-off-by: Hannah Hunter --- .../building-blocks/actors/actors-runtime-config.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/daprdocs/content/en/developing-applications/building-blocks/actors/actors-runtime-config.md b/daprdocs/content/en/developing-applications/building-blocks/actors/actors-runtime-config.md index ce7008c19..c1c5a73e5 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/actors/actors-runtime-config.md +++ b/daprdocs/content/en/developing-applications/building-blocks/actors/actors-runtime-config.md @@ -19,6 +19,10 @@ You can modify the default Dapr actor runtime behavior using the following confi | `remindersStoragePartitions` | Configure the number of partitions for actor's reminders. If not provided, all reminders are saved as a single record in actor's state store. | 0 | | `entitiesConfig` | Configure each actor type individually with an array of configurations. Any entity specified in the individual entity configurations must also be specified in the top level `entities` field. | N/A | +{{% alert title="Note" color="primary" %}} +Timeouts and intervals use [Go's ParseDuration](https://pkg.go.dev/time#ParseDuration) format. +{{% /alert %}} + ## Examples {{< tabs ".NET" JavaScript Python Java Go >}}