diff options
author | Jon Moss <me@jonathanmoss.me> | 2017-08-06 22:14:10 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2017-08-06 22:14:10 -0400 |
commit | 5e222f3d91f16291c5c4bcb72b8ba6016a8ae0b3 (patch) | |
tree | a9336b5ae40d0fe83a9f6896afd6c9fd33f8e1f2 | |
parent | 6b0d59895ccaf81767a0243eb166d59a36e1ab5a (diff) | |
download | rails-5e222f3d91f16291c5c4bcb72b8ba6016a8ae0b3.tar.gz rails-5e222f3d91f16291c5c4bcb72b8ba6016a8ae0b3.tar.bz2 rails-5e222f3d91f16291c5c4bcb72b8ba6016a8ae0b3.zip |
Lint actioncable/CHANGELOG.md
Postgres --> PostgreSQL
ActionCable --> Action Cable
[ci skip]
-rw-r--r-- | actioncable/CHANGELOG.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actioncable/CHANGELOG.md b/actioncable/CHANGELOG.md index fbe9863af7..560ee89846 100644 --- a/actioncable/CHANGELOG.md +++ b/actioncable/CHANGELOG.md @@ -1,4 +1,4 @@ -* Hash long stream identifiers when using Postgres adapter. +* Hash long stream identifiers when using PostgreSQL adapter. PostgreSQL has a limit on identifiers length (63 chars, [docs](https://www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS)). Provided fix minifies identifiers longer than 63 chars by hashing them with SHA1. @@ -7,7 +7,7 @@ *Vladimir Dementyev* -* ActionCable's `redis` adapter allows for other common redis-rb options (`host`, `port`, `db`, `password`) in cable.yml. +* Action Cable'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 @@ -16,7 +16,7 @@ *Marc Rendl Ignacio* -* ActionCable socket errors are now logged to the console +* Action Cable 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). |