Cannot use batches with User.try_send_confirmation_email/1

This commit is contained in:
Mark Felder 2020-09-24 18:23:47 -05:00
parent 935ef21b02
commit e33360fdb9
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ defmodule Mix.Tasks.Pleroma.Email do
confirmation_pending: true,
invisible: false
})
|> Pleroma.Repo.chunk_stream(500, :batches)
|> Pleroma.Repo.chunk_stream(500)
|> Stream.each(&Pleroma.User.try_send_confirmation_email(&1))
|> Stream.run()
end