From 3a963a5eebb61a422d2e6bd4f5a8e0e66f6540e2 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 12 Apr 2018 23:57:20 +0200 Subject: [PATCH] Drop the quotes in the alembic.ini Signed-off-by: Pierre-Yves Chibon --- .../openshift-apps/release-monitoring/templates/configmap.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/openshift-apps/release-monitoring/templates/configmap.yml b/roles/openshift-apps/release-monitoring/templates/configmap.yml index aa48fc8cf8..e521131a9b 100644 --- a/roles/openshift-apps/release-monitoring/templates/configmap.yml +++ b/roles/openshift-apps/release-monitoring/templates/configmap.yml @@ -75,9 +75,9 @@ data: script_location = anitya:db/migrations sourceless = false {% if env == 'staging' %} - sqlalchemy.url = "postgresql://{{ anitya_stg_db_user }}:{{ anitya_stg_db_pass }}@{{ anitya_stg_db_host }}/{{ anitya_stg_db_name }}" + sqlalchemy.url = postgresql://{{ anitya_stg_db_user }}:{{ anitya_stg_db_pass }}@{{ anitya_stg_db_host }}/{{ anitya_stg_db_name }} {% else %} - sqlalchemy.url = "postgresql://{{ anitya_db_user }}:{{ anitya_db_pass }}@{{ anitya_db_host }}/{{ anitya_db_name }}" + sqlalchemy.url = postgresql://{{ anitya_db_user }}:{{ anitya_db_pass }}@{{ anitya_db_host }}/{{ anitya_db_name }} {% endif %} [loggers] keys = root,sqlalchemy,alembic