Merge pull request #9161 from Tom-Hubrecht/fix-deploy

add default values for some of the config options
This commit is contained in:
LeSim 2023-08-31 10:25:54 +00:00 committed by GitHub
commit 30c8d3afcb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ features = [
def database_exists?
ActiveRecord::Base.connection
true
rescue ActiveRecord::NoDatabaseError, PG::ConnectionBad
rescue ActiveRecord::ConnectionNotEstablished, ActiveRecord::NoDatabaseError, PG::ConnectionBad
false
end