diff options
author | Erik Johnston <erik@matrix.org> | 2021-06-28 14:12:48 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2021-06-28 14:12:48 +0100 |
commit | 5575b5cb43125d334f510027f6a3482d0b15bd4c (patch) | |
tree | 3155bfe913a0e957fbecc392e7999ba7d10cafdc /synapse/storage | |
parent | Merge branch 'release-v1.37' into matrix-org-hotfixes (diff) | |
download | synapse-5575b5cb43125d334f510027f6a3482d0b15bd4c.tar.xz |
Don't send catchup transactions for matrix hq
This is because there are problems with HQ atm.
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/databases/main/transactions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/databases/main/transactions.py b/synapse/storage/databases/main/transactions.py index d211c423b2..67655fc215 100644 --- a/synapse/storage/databases/main/transactions.py +++ b/synapse/storage/databases/main/transactions.py @@ -411,6 +411,7 @@ class TransactionWorkerStore(CacheInvalidationWorkerStore): JOIN events USING (stream_ordering) WHERE destination = ? AND stream_ordering > ? + AND room_id != '!OGEhHVWSdvArJzumhm:matrix.org' ORDER BY stream_ordering LIMIT 50 """ |