From 74df461151f1dd434315650a31b9e8eaf0bdd60c Mon Sep 17 00:00:00 2001 From: Robin Sonnabend <robin@fsmpi.rwth-aachen.de> Date: Thu, 19 Nov 2020 21:19:23 +0100 Subject: [PATCH] Comment out buggy database_exists check --- configproxy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configproxy.py b/configproxy.py index 31935fe..08fd1c6 100755 --- a/configproxy.py +++ b/configproxy.py @@ -131,6 +131,8 @@ def check_choice(option, value, choices): def check_database( SQLALCHEMY_DATABASE_URI, SQLALCHEMY_TRACK_MODIFICATIONS): + # remove once sqlalchemy.database_exists works as intended + return True from sqlalchemy_utils import database_exists from sqlalchemy import exc try: -- GitLab