Hi,
While upgrading to ActiveRecord 7.2 from 7.1 we noticed the following change:
# AR 7.1
ActiveRecord::Base.establish_connection(db_config)
puts ActiveRecord::Base.connection.active?
> true
This changed in AR 7.2 though:
# AR 7.2
ActiveRecord::Base.establish_connection(db_config)
puts ActiveRecord::Base.connection.active?
> false
I can’t find anything in the change log indicating this changed? So are there any implications due to this change?
We are using postgres 16.4 ruby 3.3