mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
Fix crash in tootctl
commands making use of parallelization when Elasticsearch is enabled (#24182)
This commit is contained in:
parent
0ca54a4105
commit
bdeb6ff180
|
@ -52,6 +52,7 @@ module Mastodon
|
|||
|
||||
progress.log("Processing #{item.id}") if options[:verbose]
|
||||
|
||||
Chewy.strategy(:mastodon) do
|
||||
result = ActiveRecord::Base.connection_pool.with_connection do
|
||||
yield(item)
|
||||
ensure
|
||||
|
@ -60,6 +61,7 @@ module Mastodon
|
|||
end
|
||||
|
||||
aggregate.increment(result) if result.is_a?(Integer)
|
||||
end
|
||||
rescue => e
|
||||
progress.log pastel.red("Error processing #{item.id}: #{e}")
|
||||
ensure
|
||||
|
|
Loading…
Reference in a new issue