aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorGaurish Sharma <contact@gaurishsharma.com>2014-02-23 12:35:53 +0530
committerGaurish Sharma <contact@gaurishsharma.com>2014-02-23 12:35:53 +0530
commitb91d76131b2dd5fbd4d73f6e1e925c9e6f9880f6 (patch)
tree28ccc00cb7a134176b93065f6880c25a0e23b1a7 /guides
parent4b95405818fee8a07ff0995229eed7d759422dc4 (diff)
downloadrails-b91d76131b2dd5fbd4d73f6e1e925c9e6f9880f6.tar.gz
rails-b91d76131b2dd5fbd4d73f6e1e925c9e6f9880f6.tar.bz2
rails-b91d76131b2dd5fbd4d73f6e1e925c9e6f9880f6.zip
Tweak Configuring Guide language
the fact that Rails is multi-thread by default is not very relevant. see https://github.com/rails/rails/pull/13998 [ci skip]
Diffstat (limited to 'guides')
-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 7b72e27b96..a88591e89c 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -939,4 +939,4 @@ ActiveRecord::ConnectionTimeoutError - could not obtain a database connection wi
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. As Rails is multi-threaded by default, 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.
+NOTE. If you are running in a multi-threaded environment, 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.