diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2015-12-18 13:15:56 +0100 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2015-12-18 13:15:56 +0100 |
commit | ed33d1d641de2daeac329f27d2ee611b612f78de (patch) | |
tree | 83f7b0066252b6304fc791a4248e26596e771d55 /actioncable | |
parent | 21efa5218b40836a37b0517cc8db4feadb021c09 (diff) | |
download | rails-ed33d1d641de2daeac329f27d2ee611b612f78de.tar.gz rails-ed33d1d641de2daeac329f27d2ee611b612f78de.tar.bz2 rails-ed33d1d641de2daeac329f27d2ee611b612f78de.zip |
Simplify
Diffstat (limited to 'actioncable')
-rw-r--r-- | actioncable/README.md | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/actioncable/README.md b/actioncable/README.md index 577baacb88..78cef27065 100644 --- a/actioncable/README.md +++ b/actioncable/README.md @@ -305,16 +305,9 @@ By default, `ActionCable::Server::Base` will look for a configuration file in `R ```yaml production: &production - :url: redis://10.10.3.153:6381 - :host: 10.10.3.153 - :port: 6381 - :timeout: 1 + url: redis://10.10.3.153:6381 development: &development - :url: redis://localhost:6379 - :host: localhost - :port: 6379 - :timeout: 1 - :inline: true + url: redis://localhost:6379 test: *development ``` |