From b3e2b1024a508d2aca07a124ea5a6cf63ff9a70c Mon Sep 17 00:00:00 2001 From: Roberto Rojas Date: Tue, 15 Aug 2023 12:40:00 -0400 Subject: [PATCH] [State CockroachDB] Continuation from issue 3054 (#3082) Signed-off-by: robertojrojas --- state/cockroachdb/metadata.yaml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/state/cockroachdb/metadata.yaml b/state/cockroachdb/metadata.yaml index 16b619c71..c5e49f39c 100644 --- a/state/cockroachdb/metadata.yaml +++ b/state/cockroachdb/metadata.yaml @@ -21,9 +21,9 @@ authenticationProfiles: - name: connectionString required: true sensitive: true - description: The connection string for the PostgreSQL database + description: The connection string for the CockroachDB database example: | - "host=localhost user=postgres password=example port=5432 connect_timeout=10 database=dapr_test" + "host=localhost user=root password=example port=5432 connect_timeout=10 database=dapr_test" type: string metadata: - name: timeoutInSeconds @@ -34,14 +34,14 @@ metadata: example: '30' - name: tableName description: | - Name of the table where the data is stored. Defaults to state. Can optionally have + Name of the table where the data is stored. Can optionally have the schema name as prefix, such as public.state. type: string default: '"state"' example: '"state", "public.state"' - name: metadataTableName description: | - Name of the table Dapr uses to store a few metadata properties. Defaults to dapr_metadata. + Name of the table Dapr uses to store a few metadata properties. Can optionally have the schema name as prefix, such as public.dapr_metadata. type: string default: '"dapr_metadata"' @@ -58,10 +58,4 @@ metadata: Max idle time before unused connections are automatically closed in the connection pool. By default, there’s no value and this is left to the database driver to choose. type: duration - example: '"5m"' - - name: actorStateStore - description: | - Consider this state store for actors. - type: bool - default: '"false"' - example: '"true", "false"' \ No newline at end of file + example: '"5m"' \ No newline at end of file