summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2023-10-16 17:37:58 +0100
committerOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2023-10-16 17:37:58 +0100
commit96769a229cc249973926848a2410c0c60f9b0c16 (patch)
tree476c0f89cab613ae530371edec64d1818147f1c6 /synapse
parentMerge remote-tracking branch 'origin/release-v1.94' into matrix-org-hotfixes (diff)
downloadsynapse-96769a229cc249973926848a2410c0c60f9b0c16.tar.xz
TEMPORARY Disable prune_old_outbound_device_pokes
See #16480
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/databases/main/devices.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/devices.py b/synapse/storage/databases/main/devices.py

index df596f35f9..a8206c6afe 100644 --- a/synapse/storage/databases/main/devices.py +++ b/synapse/storage/databases/main/devices.py
@@ -160,7 +160,9 @@ class DeviceWorkerStore(RoomMemberWorkerStore, EndToEndKeyWorkerStore): prefilled_cache=device_list_federation_prefill, ) - if hs.config.worker.run_background_tasks: + # vdh,rei 2023-10-13: disable because it is eating DB + # https://github.com/matrix-org/synapse/issues/16480 + if False and hs.config.worker.run_background_tasks: self._clock.looping_call( self._prune_old_outbound_device_pokes, 60 * 60 * 1000 )