Skip to content

Commit

Permalink
reverted back
Browse files Browse the repository at this point in the history
  • Loading branch information
Sbazar-GmbH authored Oct 4, 2024
1 parent 078987b commit 290c98d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/configs/middleware/cache/redis_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class RedisConfig(BaseSettings):

REDIS_PASSWORD: Optional[str] = Field(
description="Redis password",
default="difyai123456",
default=None,
)

REDIS_DB: NonNegativeInt = Field(
Expand All @@ -36,7 +36,7 @@ class RedisConfig(BaseSettings):

REDIS_USE_SSL: bool = Field(
description="whether to use SSL for Redis connection",
default=true,
default=False,
)

REDIS_USE_SENTINEL: Optional[bool] = Field(
Expand Down

0 comments on commit 290c98d

Please sign in to comment.