diff options
author | reivilibre <38398653+reivilibre@users.noreply.github.com> | 2021-09-20 10:26:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-20 10:26:13 +0100 |
commit | 437961744c6c8761e6483bb215e5e779123ffd97 (patch) | |
tree | 73ca6a2ae76a0f52eabac3e8f923074716f76f80 /synapse/storage/databases/main/events.py | |
parent | Fix #10837 by adding JSON encoding/decoding to the Module API example… (#10... (diff) | |
download | synapse-437961744c6c8761e6483bb215e5e779123ffd97.tar.xz |
Fix remove_stale_pushers job on SQLite. (#10843)
Diffstat (limited to 'synapse/storage/databases/main/events.py')
-rw-r--r-- | synapse/storage/databases/main/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/events.py b/synapse/storage/databases/main/events.py index 8e691678e5..dec7e8594e 100644 --- a/synapse/storage/databases/main/events.py +++ b/synapse/storage/databases/main/events.py @@ -667,7 +667,7 @@ class PersistEventsStore: table="event_auth_chain_to_calculate", keyvalues={}, column="event_id", - iterable=new_chain_tuples, + values=new_chain_tuples, ) # Now we need to calculate any new links between chains caused by |