mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
In _purge_history_txn
, ensure that txn.fetchall has elements before accessing rows (#10690)
This change adds a check for row existence before accessing row element, this should fix issue #10669 Signed-off-by: Vasya Boytsov vasiliy.boytsov@phystech.edu
This commit is contained in:
parent
90d9fc7505
commit
e704cc2a48
1
changelog.d/10690.bugfix
Normal file
1
changelog.d/10690.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Fix a long-standing bug that caused an `AssertionError` when purging history in certain rooms. Contributed by @Kokokokoka.
|
@ -102,6 +102,10 @@ class PurgeEventsStore(StateGroupWorkerStore, CacheInvalidationWorkerStore):
|
||||
(room_id,),
|
||||
)
|
||||
rows = txn.fetchall()
|
||||
# if we already have no forwards extremities (for example because they were
|
||||
# cleared out by the `delete_old_current_state_events` background database
|
||||
# update), then we may as well carry on.
|
||||
if rows:
|
||||
max_depth = max(row[1] for row in rows)
|
||||
|
||||
if max_depth < token.topological:
|
||||
@ -109,7 +113,7 @@ class PurgeEventsStore(StateGroupWorkerStore, CacheInvalidationWorkerStore):
|
||||
# otherwise we wouldn't be able to send any events (due to not
|
||||
# having any backwards extremities)
|
||||
raise SynapseError(
|
||||
400, "topological_ordering is greater than forward extremeties"
|
||||
400, "topological_ordering is greater than forward extremities"
|
||||
)
|
||||
|
||||
logger.info("[purge] looking for events to delete")
|
||||
|
Loading…
Reference in New Issue
Block a user