Skip to content

Commit

Permalink
fixes pentestgeek#225 where sidekiq config size was larger than that …
Browse files Browse the repository at this point in the history
…allowed within database.yml and would cause not all emails to send because of db overload
  • Loading branch information
zeknox committed Sep 11, 2015
1 parent 22d4523 commit 89eeecb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ development:
encoding: utf8
reconnect: false
database: pf_dev
pool: 5
pool: 25
username: pf_dev
password: password
host: localhost
Expand All @@ -26,7 +26,7 @@ test:
encoding: utf8
reconnect: false
database: pf_test
pool: 5
pool: 25
username: pf_test
password: password
host: localhost
Expand All @@ -36,7 +36,7 @@ production:
encoding: utf8
reconnect: false
database: pf_prod
pool: 5
pool: 25
username: pf_prod
password: password
host: localhost

0 comments on commit 89eeecb

Please sign in to comment.