Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 07830d5

Browse files
committed
Fix variable issue.
1 parent 75876f9 commit 07830d5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

synapse/storage/databases/main/event_push_actions.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,7 @@ async def _background_drop_null_thread_id_indexes(
318318
event_push_summary.
319319
"""
320320

321-
def drop_null_thread_id_indexes_txn(
322-
txn: LoggingTransaction, start_stream_ordering: int
323-
) -> None:
321+
def drop_null_thread_id_indexes_txn(txn: LoggingTransaction) -> None:
324322
sql = "DROP INDEX IF EXISTS event_push_actions_thread_id_null"
325323
logger.debug("[SQL] %s", sql)
326324
txn.execute(sql)

0 commit comments

Comments
 (0)