diff options
author | Erik Johnston <erik@matrix.org> | 2018-02-15 15:13:36 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-02-15 15:47:06 +0000 |
commit | c714c6185367e39123530cb7f89584004434c473 (patch) | |
tree | 3fff0e9d353db7e777c292c6d4867fadfa7fab25 /synapse/storage/events.py | |
parent | Store push actions in staging area (diff) | |
download | synapse-c714c6185367e39123530cb7f89584004434c473.tar.xz |
Update event_push_actions table from staging table
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 28cce2979c..ca64aacb1c 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -1170,7 +1170,7 @@ class EventsStore(SQLBaseStore): # Insert all the push actions into the event_push_actions table. if context.push_actions: self._set_push_actions_for_event_and_users_txn( - txn, event, context.push_actions + txn, event, ) if event.type == EventTypes.Redaction and event.redacts is not None: |