Skip to content

Commit

Permalink
Remove Generator from 4 places in PersistEventStore
Browse files Browse the repository at this point in the history
  • Loading branch information
realtyem committed Oct 10, 2024
1 parent f6a3e5e commit 6295ff8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions synapse/storage/databases/main/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -1686,7 +1686,7 @@ def _update_current_state_txn(
"""
txn.execute_batch(
sql,
(
[
(
stream_id,
self._instance_name,
Expand All @@ -1699,17 +1699,17 @@ def _update_current_state_txn(
state_key,
)
for etype, state_key in itertools.chain(to_delete, to_insert)
),
],
)
# Now we actually update the current_state_events table

txn.execute_batch(
"DELETE FROM current_state_events"
" WHERE room_id = ? AND type = ? AND state_key = ?",
(
[
(room_id, etype, state_key)
for etype, state_key in itertools.chain(to_delete, to_insert)
),
],
)

# We include the membership in the current state table, hence we do
Expand Down Expand Up @@ -1799,11 +1799,11 @@ def _update_current_state_txn(
txn.execute_batch(
"DELETE FROM local_current_membership"
" WHERE room_id = ? AND user_id = ?",
(
[
(room_id, state_key)
for etype, state_key in itertools.chain(to_delete, to_insert)
if etype == EventTypes.Member and self.is_mine_id(state_key)
),
],
)

if to_insert:
Expand Down Expand Up @@ -3201,26 +3201,26 @@ def _set_push_actions_for_event_and_users_txn(
if notifiable_events:
txn.execute_batch(
sql,
(
[
(
event.room_id,
event.internal_metadata.stream_ordering,
event.depth,
event.event_id,
)
for event in notifiable_events
),
],
)

# Now we delete the staging area for *all* events that were being
# persisted.
txn.execute_batch(
"DELETE FROM event_push_actions_staging WHERE event_id = ?",
(
[
(event.event_id,)
for event, _ in all_events_and_contexts
if event.internal_metadata.is_notifiable()
),
],
)

def _remove_push_actions_for_event_id_txn(
Expand Down

0 comments on commit 6295ff8

Please sign in to comment.