Fix UserCleanupScheduler
crash when an unconfirmed account has a moderation note (#23318)
* Fix `UserCleanupScheduler` crash when an unconfirmed account has a moderation note * Add tests
This commit is contained in:
parent
523a86618f
commit
9edefc779f
2 changed files with 40 additions and 1 deletions
|
@ -15,7 +15,7 @@ class Scheduler::UserCleanupScheduler
|
|||
def clean_unconfirmed_accounts!
|
||||
User.where('confirmed_at is NULL AND confirmation_sent_at <= ?', 2.days.ago).reorder(nil).find_in_batches do |batch|
|
||||
# We have to do it separately because of missing database constraints
|
||||
AccountModerationNote.where(account_id: batch.map(&:account_id)).delete_all
|
||||
AccountModerationNote.where(target_account_id: batch.map(&:account_id)).delete_all
|
||||
Account.where(id: batch.map(&:account_id)).delete_all
|
||||
User.where(id: batch.map(&:id)).delete_all
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue