aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorwillnet <netwillnet@gmail.com>2016-05-27 16:43:56 +0900
committerwillnet <netwillnet@gmail.com>2016-05-27 16:43:56 +0900
commit875ef00bdabe42e8ed16dc50df1ce44f71c4487d (patch)
treea26437c75c22b192cd50b1dc0f2b44109bec3501 /guides
parentc34eefbaf92cfdd8b8db6e513e1c4f489af4c3c0 (diff)
downloadrails-875ef00bdabe42e8ed16dc50df1ce44f71c4487d.tar.gz
rails-875ef00bdabe42e8ed16dc50df1ce44f71c4487d.tar.bz2
rails-875ef00bdabe42e8ed16dc50df1ce44f71c4487d.zip
[ci skip] Fix ActionCable Guides
Default worker pool size was changed from 100 to 4 at #24376
Diffstat (limited to 'guides')
-rw-r--r--guides/source/action_cable_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md
index 93bcb6157a..c62004067c 100644
--- a/guides/source/action_cable_overview.md
+++ b/guides/source/action_cable_overview.md
@@ -583,7 +583,7 @@ For a full list of all configuration options, see the
`ActionCable::Server::Configuration` class.
Also note that your server must provide at least the same number of database
-connections as you have workers. The default worker pool size is set to 100, so
+connections as you have workers. The default worker pool size is set to 4, so
that means you have to make at least that available. You can change that in
`config/database.yml` through the `pool` attribute.