diff --git a/frappe/utils/connections.py b/frappe/utils/connections.py index e398baa5f6..e1a07b2012 100644 --- a/frappe/utils/connections.py +++ b/frappe/utils/connections.py @@ -8,7 +8,7 @@ REDIS_KEYS = ("redis_cache", "redis_queue") def is_open(scheme, hostname, port, path, timeout=10): - if scheme in ["redis", "postgres", "mariadb"]: + if scheme in ["redis", "rediss", "postgres", "mariadb"]: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) conn = (hostname, int(port)) elif scheme == "unix":