Use database url
This commit is contained in:
parent
35940128d7
commit
d9f2a9f7fb
|
@ -12,16 +12,8 @@ on_worker_boot do
|
||||||
if defined?(ActiveRecord::Base)
|
if defined?(ActiveRecord::Base)
|
||||||
ActiveSupport.on_load(:active_record) do
|
ActiveSupport.on_load(:active_record) do
|
||||||
ActiveRecord::Base.connection.disconnect! rescue ActiveRecord::ConnectionNotEstablished
|
ActiveRecord::Base.connection.disconnect! rescue ActiveRecord::ConnectionNotEstablished
|
||||||
|
ActiveRecord::Base.establish_connection
|
||||||
config = Rails.application.config.database_configuration[Rails.env]
|
|
||||||
# config['reaping_frequency'] = ENV['DB_REAP_FREQ'] || 10 # seconds
|
|
||||||
# config['pool'] = ENV['DB_POOL'] || 3
|
|
||||||
|
|
||||||
ActiveRecord::Base.establish_connection(config)
|
|
||||||
|
|
||||||
Rails.logger.info "Connected to PG. Connection pool size #{config['pool']}, reaping frequency #{config['reaping_frequency']}"
|
|
||||||
end
|
end
|
||||||
# QC::Conn.connect
|
|
||||||
Rails.logger.info('Connected to PG')
|
Rails.logger.info('Connected to PG')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue