1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-05-26 11:56:09 +02:00

matrix: Update synapse to 1.40.0

This commit is contained in:
Jan Alexander Steffens (heftig) 2021-08-10 21:49:51 +02:00
parent b53b8eaf80
commit 481033af57
No known key found for this signature in database
GPG Key ID: 3B94A80E50A477C7
3 changed files with 6 additions and 2 deletions

View File

@ -18,7 +18,6 @@
postgres_work_mem: 64MB
postgres_maintenance_work_mem: 256MB
postgres_effective_cache_size: 4GB
postgres_jit: 'off'
- { role: postfix_null }
- { role: matrix }
- { role: fail2ban }

View File

@ -77,7 +77,7 @@
- name: install synapse
pip:
name:
- 'matrix-synapse[postgres,systemd,url_preview,redis,oidc]==1.39.0'
- 'matrix-synapse[postgres,systemd,url_preview,redis,oidc]==1.40.0'
state: latest
extra_args: '--upgrade-strategy=eager'
virtualenv: /var/lib/synapse/venv

View File

@ -731,6 +731,9 @@ caches:
# 'name' gives the database engine to use: either 'sqlite3' (for SQLite) or
# 'psycopg2' (for PostgreSQL).
#
# 'txn_limit' gives the maximum number of transactions to run per connection
# before reconnecting. Defaults to 0, which means no limit.
#
# 'args' gives options which are passed through to the database engine,
# except for options starting 'cp_', which are used to configure the Twisted
# connection pool. For a reference to valid arguments, see:
@ -751,6 +754,7 @@ caches:
#
#database:
# name: psycopg2
# txn_limit: 10000
# args:
# user: synapse_user
# password: secretpassword
@ -765,6 +769,7 @@ caches:
#
database:
name: psycopg2
txn_limit: 10000
args:
dbname: synapse
user: synapse