diff options
author | Eugene Kenny <elkenny@gmail.com> | 2018-10-04 01:19:48 +0100 |
---|---|---|
committer | Eugene Kenny <elkenny@gmail.com> | 2018-10-04 01:19:48 +0100 |
commit | 25839860711987b48b5e5a6d919b4ea294ac10a8 (patch) | |
tree | a02d23d50e4f4e91989fc00d002b9d7b52dc4675 | |
parent | c55fc43b3fbdb630def9dd4502adc9c36ee87406 (diff) | |
download | rails-25839860711987b48b5e5a6d919b4ea294ac10a8.tar.gz rails-25839860711987b48b5e5a6d919b4ea294ac10a8.tar.bz2 rails-25839860711987b48b5e5a6d919b4ea294ac10a8.zip |
Remove unreachable database warning
`establish_connection` will never raise `ActiveRecord::NoDatabaseError`,
because it doesn't connect to a database; it sets up a connection pool.
-rw-r--r-- | activerecord/lib/active_record/railtie.rb | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/activerecord/lib/active_record/railtie.rb b/activerecord/lib/active_record/railtie.rb index 81ad9ef3a2..538659d6bd 100644 --- a/activerecord/lib/active_record/railtie.rb +++ b/activerecord/lib/active_record/railtie.rb @@ -168,21 +168,7 @@ end_error initializer "active_record.initialize_database" do ActiveSupport.on_load(:active_record) do self.configurations = Rails.application.config.database_configuration - - begin - establish_connection - rescue ActiveRecord::NoDatabaseError - warn <<-end_warning -Oops - You have a database configured, but it doesn't exist yet! - -Here's how to get started: - - 1. Configure your database in config/database.yml. - 2. Run `rails db:create` to create the database. - 3. Run `rails db:setup` to load your database schema. -end_warning - raise - end + establish_connection end end |