We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6826d53 + 76178db commit c85cf25Copy full SHA for c85cf25
src/passari_workflow/redis/connection.py
@@ -30,6 +30,8 @@ def get_redis_url():
30
)
31
elif url and (host or port or db or password):
32
raise EnvironmentError("The 'url' config for Redis is exclusive")
33
+ elif url:
34
+ return url
35
36
password_part = f":{quote(password)}@" if password else ""
37
port_part = f":{port}" if port else ""
0 commit comments