Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion test/dummy/config/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
default: &default
adapter: sqlite3
pool: 50
retries: 100
<% if Rails::VERSION::MAJOR >= 8 %>
timeout: 5000
<% else %>
retries: 100 # "retries" is deprecated in rails 8 and will be removed in rails 8.1
<% end %>

<% elsif ENV["TARGET_DB"] == "postgres" %>
default: &default
Expand Down