Skip to content

Commit

Permalink
Fix the 'set_device_id_for_pushers_txn' background update. (matrix-or…
Browse files Browse the repository at this point in the history
…g#15391)

Refer to the correct field from the response when updating
the background update progress.
  • Loading branch information
sandhose authored and realtyem committed Apr 12, 2023
1 parent c3fab6a commit 4550c86
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 4550c86

Please sign in to comment.