From 9cbc74ebb2bb53586da3edcf6b8af0f98a223795 Mon Sep 17 00:00:00 2001 From: Dennis Gaida <2392217+DennisGaida@users.noreply.github.com> Date: Mon, 15 Aug 2022 23:18:53 +0200 Subject: [PATCH] remove redis URL from log --- docker/wait-for-redis.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/docker/wait-for-redis.py b/docker/wait-for-redis.py index 576546150..86f35a7cf 100755 --- a/docker/wait-for-redis.py +++ b/docker/wait-for-redis.py @@ -7,7 +7,6 @@ a certain number of times, waiting a little bit in between import os import sys import time -import re from typing import Final from redis import Redis @@ -18,14 +17,8 @@ if __name__ == "__main__": RETRY_SLEEP_SECONDS: Final[int] = 5 REDIS_URL: Final[str] = os.getenv("PAPERLESS_REDIS", "redis://localhost:6379") - matches = re.match(r"(?P.*//)(?P.*\@)?(?P.*)", REDIS_URL) - credentials="" - if (matches.group("credentials") is not None): - credentials="xxx:xxx@" - redisurl="{0}{1}{2}".format(matches.group("protocol"), credentials, matches.group("host")) - - print(f"Waiting for Redis: {redisurl}", flush=True) + print(f"Waiting for Redis...", flush=True) attempt = 0 with Redis.from_url(url=REDIS_URL) as client: @@ -44,8 +37,8 @@ if __name__ == "__main__": attempt += 1 if attempt >= MAX_RETRY_COUNT: - print(f"Failed to connect to: {redisurl}") + print(f"Failed to connect to redis using environment variable PAPERLESS_REDIS.") sys.exit(os.EX_UNAVAILABLE) else: - print(f"Connected to Redis broker: {redisurl}") + print(f"Connected to Redis broker.") sys.exit(os.EX_OK)