Drop the quotes in the alembic.ini
Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
parent
3d057ffcd6
commit
3a963a5eeb
1 changed files with 2 additions and 2 deletions
|
@ -75,9 +75,9 @@ data:
|
||||||
script_location = anitya:db/migrations
|
script_location = anitya:db/migrations
|
||||||
sourceless = false
|
sourceless = false
|
||||||
{% if env == 'staging' %}
|
{% 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 %}
|
{% 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 %}
|
{% endif %}
|
||||||
[loggers]
|
[loggers]
|
||||||
keys = root,sqlalchemy,alembic
|
keys = root,sqlalchemy,alembic
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue