2 files changed, 0 insertions, 8 deletions
diff --git a/synapse/federation/sender/per_destination_queue.py b/synapse/federation/sender/per_destination_queue.py
index a44cc781c8..3a2efd56ee 100644
--- a/synapse/federation/sender/per_destination_queue.py
+++ b/synapse/federation/sender/per_destination_queue.py
@@ -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
)
diff --git a/synapse/storage/databases/main/transactions.py b/synapse/storage/databases/main/transactions.py
index b3250084c5..d211c423b2 100644
--- a/synapse/storage/databases/main/transactions.py
+++ b/synapse/storage/databases/main/transactions.py
@@ -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
"""
|