Fix DB connection pool settings in CLI (#15983)
This commit is contained in:
		
					parent
					
						
							
								f5bcc6bc65
							
						
					
				
			
			
				commit
				
					
						ddabbbf5a6
					
				
			
		
					 1 changed files with 3 additions and 1 deletions
				
			
		|  | @ -25,7 +25,9 @@ module Mastodon | ||||||
|         exit(1) |         exit(1) | ||||||
|       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) | ||||||
| 
 | 
 | ||||||
|       progress  = create_progress_bar(scope.count) |       progress  = create_progress_bar(scope.count) | ||||||
|       pool      = Concurrent::FixedThreadPool.new(options[:concurrency]) |       pool      = Concurrent::FixedThreadPool.new(options[:concurrency]) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue