Skip to content

Commit 5218110

Browse files
committed
Fix for solid queue error when db pool count mismatched
Solid Queue is configured to have a pool of 4. A change was recently added to error when it detects a mismatch in the DB pool count. rails/solid_queue#457 This change updates config/database.yml to match the Solid Queue default.
1 parent 0f11d7e commit 5218110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/database.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
default: &default
88
encoding: utf8
99
adapter: sqlite3
10-
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 3 } %>
10+
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 4 } %>
1111
timeout: 5000
1212
extensions:
1313
- SqliteExt::Ulid

0 commit comments

Comments
 (0)