Skip to content

Commit

Permalink
fix(contents): fix redis connection
Browse files Browse the repository at this point in the history
  • Loading branch information
EchoSkorJjj committed Apr 22, 2024
1 parent 8aa32c4 commit 3961ac5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/simple/contents/src/connection/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def connect(self) -> None:
port=self._port,
username=os.getenv("CACHE_USERNAME"),
password=os.getenv("CACHE_PASSWORD"),
ssl=os.getenv("ENVIRONMENT_MODE") == "production"
)
logging.debug(f"Cache connected at {self._host}:{self._port}")

Expand Down

0 comments on commit 3961ac5

Please sign in to comment.