summary refs log tree commit diff
path: root/synapse/app/pusher.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:16:43 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:16:43 +0000
commit35d74a232c7b6141706e1ceaf2e2342ad5dce301 (patch)
tree39983a41a60b176389c224a66371e9b47f8c040e /synapse/app/pusher.py
parent1.11.0 (diff)
parentClarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957) (diff)
downloadsynapse-35d74a232c7b6141706e1ceaf2e2342ad5dce301.tar.xz
Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)
* commit '509e381af':
  Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)
  changelog
  Increase MAX_EVENTS_BEHIND for replication clients
Diffstat (limited to 'synapse/app/pusher.py')
-rw-r--r--synapse/app/pusher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py

index e46b6ac598..84e9f8d5e2 100644 --- a/synapse/app/pusher.py +++ b/synapse/app/pusher.py
@@ -158,7 +158,7 @@ class PusherReplicationHandler(ReplicationClientHandler): yield self.pusher_pool.on_new_notifications(token, token) elif stream_name == "receipts": yield self.pusher_pool.on_new_receipts( - token, token, set(row.room_id for row in rows) + token, token, {row.room_id for row in rows} ) except Exception: logger.exception("Error poking pushers")