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

Fix background job for deactivated flag #5465

Merged
merged 3 commits into from
Jun 14, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/5465.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix a crash happening when running a specific background update.
babolivier marked this conversation as resolved.
Show resolved Hide resolved
6 changes: 4 additions & 2 deletions synapse/storage/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,9 @@ def _backgroud_update_set_deactivated_flag_txn(txn):
FROM users
LEFT JOIN access_tokens ON (access_tokens.user_id = users.name)
LEFT JOIN user_threepids ON (user_threepids.user_id = users.name)
WHERE password_hash IS NULL OR password_hash = ''
WHERE (users.password_hash IS NULL OR users.password_hash = '')
AND (users.appservice_id IS NULL OR users.appservice_id = '')
AND users.is_guest = 0
AND users.name > ?
GROUP BY users.name
ORDER BY users.name ASC
Expand All @@ -666,7 +668,7 @@ def _backgroud_update_set_deactivated_flag_txn(txn):
logger.info("Marked %d rows as deactivated", rows_processed_nb)

self._background_update_progress_txn(
txn, "users_set_deactivated_flag", {"user_id": rows[-1]["user_id"]}
txn, "users_set_deactivated_flag", {"user_id": rows[-1]["name"]}
)

if batch_size > len(rows):
Expand Down