aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/README.md
diff options
context:
space:
mode:
authorwillnet <netwillnet@gmail.com>2016-05-02 23:33:12 +0900
committerwillnet <netwillnet@gmail.com>2016-05-02 23:33:12 +0900
commit11d41c6ef80e0dc3d62b6b60ce85e5c5c6867f06 (patch)
tree0556468d60c477dd1d968721a6e7d38f4c3fb7e5 /actioncable/README.md
parent6bd3e867f97ce0ef7c0900442cf1df533a7fb758 (diff)
downloadrails-11d41c6ef80e0dc3d62b6b60ce85e5c5c6867f06.tar.gz
rails-11d41c6ef80e0dc3d62b6b60ce85e5c5c6867f06.tar.bz2
rails-11d41c6ef80e0dc3d62b6b60ce85e5c5c6867f06.zip
[ci skip] Fix ActionCable README
default worker pool size was changed from 100 to 4 at #24376
Diffstat (limited to 'actioncable/README.md')
-rw-r--r--actioncable/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/README.md b/actioncable/README.md
index fe4d213485..7a5ddaf2f1 100644
--- a/actioncable/README.md
+++ b/actioncable/README.md
@@ -385,7 +385,7 @@ Rails.application.config.action_cable.log_tags = [
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 is set to 100, so that means you have to make at least that available. You can change that in `config/database.yml` through the `pool` attribute.
+Also note that your server must provide at least the same number of database connections as you have workers. The default worker pool 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.
## Running the cable server