Revert "Don't send catchup transactions for matrix hq"

This reverts commits 5575b5cb43,
f271b32bea,
ffe17e47ce
This commit is contained in:
Richard van der Hoff 2021-06-29 16:13:09 +01:00
parent b18d18d03b
commit b4bdab8e52
2 changed files with 0 additions and 8 deletions

View file

@ -287,13 +287,6 @@ class PerDestinationQueue:
len(pending_pdus),
)
# Filter out HQ traffic for now
pending_pdus = [
pdu
for pdu in pending_pdus
if pdu.room_id != "!OGEhHVWSdvArJzumhm:matrix.org"
]
await self._transaction_manager.send_new_transaction(
self._destination, pending_pdus, pending_edus
)

View file

@ -411,7 +411,6 @@ class TransactionWorkerStore(CacheInvalidationWorkerStore):
JOIN events USING (stream_ordering)
WHERE destination = ?
AND stream_ordering > ?
AND destination_rooms.room_id != '!OGEhHVWSdvArJzumhm:matrix.org'
ORDER BY stream_ordering
LIMIT 50
"""