diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2016-10-13 11:59:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-13 11:59:36 -0500 |
commit | e10e3c7da215ef848db7592068993f14aac00fa6 (patch) | |
tree | 358e5195cace72e9a537d0d80b63cf43df218d02 /guides | |
parent | 454460e87ea97ac4e8a5602112cb09ff3c3dcf42 (diff) | |
parent | 854a1be5fa085270b5049188caffd71da9e5ccfa (diff) | |
download | rails-e10e3c7da215ef848db7592068993f14aac00fa6.tar.gz rails-e10e3c7da215ef848db7592068993f14aac00fa6.tar.bz2 rails-e10e3c7da215ef848db7592068993f14aac00fa6.zip |
Merge pull request #26779 from javiercr/patch-1
Clarify default adapter in ActionCable guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_cable_overview.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md index a66a8ff484..3716aa0ecb 100644 --- a/guides/source/action_cable_overview.md +++ b/guides/source/action_cable_overview.md @@ -240,9 +240,9 @@ WebNotificationsChannel.broadcast_to( ``` The `WebNotificationsChannel.broadcast_to` call places a message in the current -subscription adapter (Redis by default)'s pubsub queue under a separate -broadcasting name for each user. For a user with an ID of 1, the broadcasting -name would be `web_notifications:1`. +subscription adapter (by default `redis` for production and `async` for development and +test environments)'s pubsub queue under a separate broadcasting name for each user. +For a user with an ID of 1, the broadcasting name would be `web_notifications:1`. The channel has been instructed to stream everything that arrives at `web_notifications:1` directly to the client by invoking the `received` |