mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-05 03:28:24 +01:00
Fix delete_old_otks
job on worker deployments (#17960)
In a worker-mode deployment, the `E2eKeysHandler` is not necessarily loaded, which means the handler for the `delete_old_otks` task will not be registered. Make sure we load the handler. Introduced in https://github.com/element-hq/synapse/pull/17934
This commit is contained in:
parent
0202e5f210
commit
02aa7adf4c
2 changed files with 2 additions and 0 deletions
1
changelog.d/17960.bugfix
Normal file
1
changelog.d/17960.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix a bug introduced in Synapse v1.120rc1 which would cause the newly-introduced `delete_old_otks` job to fail in worker-mode deployments.
|
|
@ -254,6 +254,7 @@ class HomeServer(metaclass=abc.ABCMeta):
|
|||
"auth",
|
||||
"deactivate_account",
|
||||
"delayed_events",
|
||||
"e2e_keys", # for the `delete_old_otks` scheduled-task handler
|
||||
"message",
|
||||
"pagination",
|
||||
"profile",
|
||||
|
|
Loading…
Reference in a new issue