Merge pull request #766 from lxp/fix-postgres-upgrade

Fix concatenation of additional databases
This commit is contained in:
Slavi Pantaleev 2020-12-23 20:44:36 +02:00 committed by GitHub
commit 067f12b628
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1098,14 +1098,14 @@ matrix_postgres_import_roles_to_ignore: |
{{
[matrix_postgres_connection_username]
+
matrix_postgres_additional_databases|map(attribute='username')
matrix_postgres_additional_databases|map(attribute='username')|list
}}
matrix_postgres_import_databases_to_ignore: |
{{
[matrix_postgres_db_name]
+
matrix_postgres_additional_databases|map(attribute='name')
matrix_postgres_additional_databases|map(attribute='name')|list
}}
######################################################################