aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-11-19 22:20:35 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-12-02 20:02:06 -0200
commit016eb65d7e335b82de49f55f1de679e06855d89c (patch)
tree07f27e3582b5a5fb9218aa35ce801ccd03e3e854 /guides/source
parent81abcb79476bdfcd25da26d11690104c5e7e538a (diff)
downloadrails-016eb65d7e335b82de49f55f1de679e06855d89c.tar.gz
rails-016eb65d7e335b82de49f55f1de679e06855d89c.tar.bz2
rails-016eb65d7e335b82de49f55f1de679e06855d89c.zip
:scissors:
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 8ac34c9716..70f521bf51 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -775,7 +775,7 @@ error similar to given below will be thrown.
ActiveRecord::ConnectionTimeoutError - could not obtain a database connection within 5 seconds. The max pool size is currently 5; consider increasing it:
```
-If you get the above error, you might want to increase the size of connection
+If you get the above error, you might want to increase the size of connection
pool by incrementing the `pool` option in `database.yml`
NOTE. If you have enabled `Rails.threadsafe!` mode then there could be a chance that several threads may be accessing multiple connections simultaneously. So depending on your current request load, you could very well have multiple threads contending for a limited amount of connections.