I have noticed in Rails 4.2 the following in rails console
#database.yml
...
development:
<<: *default
database: project_development
username: root
password: <%= ENV['PASSWORD'] %>
development_replica:
<<: *default
database: replicat_db
username: replica_user
password: <%= ENV['REPLICA_PASSWORD'] %>
If I look at ActiveRecord::Base.configurations['development'] the password set
If I look at ActiveRecord::Base.configurations['development_replicate'] the password is nil
This happens with any embedded ruby that is not in the Rails.env configuration block.
Is this expected behaviour?
To establish another connection I am supposed to do the following but the embedded ruby isn't evaled
ActiveRecord::Base.establish_connection(:development_replica)
Advice or thoughts?
Thanks