From 80d25742b1d8fc9c48426b6f931e41aedecb3d42 Mon Sep 17 00:00:00 2001 From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org> Date: Tue, 30 May 2023 18:19:30 +0200 Subject: [PATCH] matrix: Update synapse to 1.84.1 --- roles/matrix/tasks/main.yml | 2 +- roles/matrix/templates/homeserver.yaml.j2 | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/roles/matrix/tasks/main.yml b/roles/matrix/tasks/main.yml index d0e87c0a2..253489f48 100644 --- a/roles/matrix/tasks/main.yml +++ b/roles/matrix/tasks/main.yml @@ -78,7 +78,7 @@ - name: Install synapse pip: name: - - 'matrix-synapse[postgres,oidc,systemd,url-preview,redis,user-search]==1.83.0' + - 'matrix-synapse[postgres,oidc,systemd,url-preview,redis,user-search]==1.84.1' state: latest extra_args: '--upgrade-strategy=eager' virtualenv: /var/lib/synapse/venv diff --git a/roles/matrix/templates/homeserver.yaml.j2 b/roles/matrix/templates/homeserver.yaml.j2 index 3843e6a81..aa6d87219 100644 --- a/roles/matrix/templates/homeserver.yaml.j2 +++ b/roles/matrix/templates/homeserver.yaml.j2 @@ -163,8 +163,6 @@ suppress_key_server_warning: true # Worker config worker_app: synapse.app.homeserver -worker_replication_host: 127.0.0.1 -worker_replication_http_port: 9093 enable_media_repo: false notify_appservices_from_worker: appservice federation_sender_instances: @@ -173,5 +171,9 @@ worker_replication_secret: "{{ vault_matrix_secrets.worker_replication_secret }} worker_log_config: "/etc/synapse/log_config.yaml" redis: enabled: true +instance_map: + main: + host: 127.0.0.1 + port: 9093 # vim:set sw=2 sts=-1 et: -- GitLab