From 0310a2ca0ba73ab68fcd6e6addbd13dec314708f Mon Sep 17 00:00:00 2001 From: Theodor Mihalache <84387487+tmihalac@users.noreply.github.com> Date: Thu, 25 Apr 2024 08:16:54 -0400 Subject: [PATCH] fix: Default value is not set in Redis connection string using environment variable (#4136) Removed documentation of Redis connection string supporting default values when using environment variables as it isn't supported Fixes #3669 Signed-off-by: Theodor Mihalache Signed-off-by: Lokesh Rangineni --- docs/how-to-guides/running-feast-in-production.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/how-to-guides/running-feast-in-production.md b/docs/how-to-guides/running-feast-in-production.md index 9d1984d736..4663c928c6 100644 --- a/docs/how-to-guides/running-feast-in-production.md +++ b/docs/how-to-guides/running-feast-in-production.md @@ -257,17 +257,6 @@ online_store: connection_string: ${REDIS_CONNECTION_STRING} ``` -It is possible to set a default value if the environment variable is not set, with `${ENV_VAR:"default"}`. For instance: - -```yaml -project: my_project -registry: data/registry.db -provider: local -online_store: - type: redis - connection_string: ${REDIS_CONNECTION_STRING:"0.0.0.0:6379"} -``` - *** ## Summary