aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/CHANGELOG.md
diff options
context:
space:
mode:
authorMarc Rendl Ignacio <marcrendlignacio@gmail.com>2017-06-27 09:34:37 +0800
committerMarc Rendl Ignacio <marcrendlignacio@gmail.com>2017-06-27 09:34:37 +0800
commitd7252786f4e133304b3d05966497272a2da9e098 (patch)
treeafd92ccf748b4db01f71d20426c20942c2b4d000 /actioncable/CHANGELOG.md
parentf55ecc6a7c7866a13fe9f5b84b295f2935c6ff1f (diff)
downloadrails-d7252786f4e133304b3d05966497272a2da9e098.tar.gz
rails-d7252786f4e133304b3d05966497272a2da9e098.tar.bz2
rails-d7252786f4e133304b3d05966497272a2da9e098.zip
Adds CHANGELOG for f55ecc6 [ci skip]
Diffstat (limited to 'actioncable/CHANGELOG.md')
-rw-r--r--actioncable/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/actioncable/CHANGELOG.md b/actioncable/CHANGELOG.md
index 2bf11da463..b1408496a0 100644
--- a/actioncable/CHANGELOG.md
+++ b/actioncable/CHANGELOG.md
@@ -1,3 +1,12 @@
+* ActionCable's `redis` adapter allows for other common redis-rb options (`host`, `port`, `db`, `password`) in cable.yml.
+
+ Previously, it accepts only a [redis:// url](https://www.iana.org/assignments/uri-schemes/prov/redis) as an option.
+ While we can add all of these options to the `url` itself, it is not explicitly documented. This alternative setup
+ is shown as the first example in the [Redis rubygem](https://github.com/redis/redis-rb#getting-started), which
+ makes this set of options as sensible as using just the `url`.
+
+ *Marc Rendl Ignacio*
+
* ActionCable socket errors are now logged to the console
Previously any socket errors were ignored and this made it hard to diagnose socket issues (e.g. as discussed in #28362).