forked from treehouse/mastodon
Fix how to change connection pool for rails 6 (#16158)
* Fix how to change connection pool for rails 6 * Fix to match the code elsewheresignup-info-prompt
parent
19d3809ad5
commit
25345c90ff
|
@ -53,7 +53,9 @@ module Mastodon
|
||||||
index.specification.lock!
|
index.specification.lock!
|
||||||
end
|
end
|
||||||
|
|
||||||
ActiveRecord::Base.configurations[Rails.env]['pool'] = options[:concurrency] + 1
|
db_config = ActiveRecord::Base.configurations[Rails.env].dup
|
||||||
|
db_config['pool'] = options[:concurrency] + 1
|
||||||
|
ActiveRecord::Base.establish_connection(db_config)
|
||||||
|
|
||||||
pool = Concurrent::FixedThreadPool.new(options[:concurrency])
|
pool = Concurrent::FixedThreadPool.new(options[:concurrency])
|
||||||
added = Concurrent::AtomicFixnum.new(0)
|
added = Concurrent::AtomicFixnum.new(0)
|
||||||
|
|
Loading…
Reference in New Issue