diff options
author | Rory& <root@rory.gay> | 2024-07-04 16:43:59 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-07-04 16:43:59 +0200 |
commit | 263d1529bb9afbd6b8b0eb88327edb3a78c24d16 (patch) | |
tree | 498285150733b7d571a2581570e548ee1318afd3 /host/Rory-nginx/services/matrix/synapse/workers/background.nix | |
parent | Set default nginx virtualhost (diff) | |
download | Rory-Open-Architecture-263d1529bb9afbd6b8b0eb88327edb3a78c24d16.tar.xz |
Fix background worker name
Diffstat (limited to 'host/Rory-nginx/services/matrix/synapse/workers/background.nix')
-rw-r--r-- | host/Rory-nginx/services/matrix/synapse/workers/background.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/Rory-nginx/services/matrix/synapse/workers/background.nix b/host/Rory-nginx/services/matrix/synapse/workers/background.nix index c97d647..501299a 100644 --- a/host/Rory-nginx/services/matrix/synapse/workers/background.nix +++ b/host/Rory-nginx/services/matrix/synapse/workers/background.nix @@ -12,7 +12,7 @@ in services.matrix-synapse = lib.mkIf cfg.enableBackgroundWorker { settings = { instance_map = { - appservice = { + background = { path = "/run/matrix-synapse/background.sock"; }; }; @@ -21,7 +21,7 @@ in }; workers = { - appservice = { + background = { worker_app = "synapse.app.generic_worker"; worker_listeners = [ { |