Skip to content

Commit

Permalink
Fix puma crash on OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
Dantemss committed Oct 17, 2024
1 parent 6aa5ef7 commit b6720e8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ default: &default
development:
<<: *default
database: <%= ENV['OXA_DEV_DB'] || 'ox_accounts_dev' %>
<% if RUBY_PLATFORM =~ /darwin/ %>gssencmode: disable<% end %>

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
Expand All @@ -17,6 +18,7 @@ test:
<<: *default
database: '<%= ENV['OXA_TEST_DB'] || 'ox_accounts_test' %><%=
"_#{ENV['TEST_ENV_NUMBER']}" if !ENV['TEST_ENV_NUMBER'].blank? %>'
<% if RUBY_PLATFORM =~ /darwin/ %>gssencmode: disable<% end %>
reaping_frequency: 0 # 0 == disabled - incompatible with our DatabaseCleaner config

production:
Expand Down

0 comments on commit b6720e8

Please sign in to comment.