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

Commit

Permalink
Fix the 'set_device_id_for_pushers_txn' background update. (#15391)
Browse files Browse the repository at this point in the history
Refer to the correct field from the response when updating
the background update progress.
  • Loading branch information
sandhose authored Apr 5, 2023
1 parent 6d10337 commit 6eb3ede
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/15391.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix the `set_device_id_for_pushers_txn` background update crash.
2 changes: 1 addition & 1 deletion synapse/storage/databases/main/pusher.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ def set_device_id_for_pushers_txn(txn: LoggingTransaction) -> int:
)

self.db_pool.updates._background_update_progress_txn(
txn, "set_device_id_for_pushers", {"pusher_id": rows[-1]["id"]}
txn, "set_device_id_for_pushers", {"pusher_id": rows[-1]["pusher_id"]}
)

return len(rows)
Expand Down

0 comments on commit 6eb3ede

Please sign in to comment.