From 2869e2a6eacf813e11829ed0a552bffe78ad2bca Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Wed, 15 Jul 2015 17:39:26 -0400 Subject: [PATCH] model: add missing params to validate_database_url --- data/model/legacy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/model/legacy.py b/data/model/legacy.py index 111dd2d10..bf42fb221 100644 --- a/data/model/legacy.py +++ b/data/model/legacy.py @@ -2776,7 +2776,7 @@ def check_health(app_config): # making a normal connect which will just hang (thus breaking the health # check). try: - validate_database_url(app_config['DB_URI'], connect_timeout=3) + validate_database_url(app_config['DB_URI'], {}, connect_timeout=3) except Exception: logger.exception('Could not connect to the database') return False