Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add channel_prefix support to ActionCable redis/evented_redis adapters. | Chad Ingram | 2017-01-17 | 3 | -0/+30 |
| | |||||
* | Prevent race condition when launching EventMachine reactor | Matthew Draper | 2016-11-30 | 1 | -2/+2 |
| | | | | | | | reactor_running? will be true just after the thread enters EventMachine.run; reactor_thread only gets set after the internal initialize_event_machine method has been called, the C extension is set up, and it is entering its run loop. | ||||
* | Add more rubocop rules about whitespaces | Rafael Mendonça França | 2016-10-29 | 1 | -1/+1 |
| | |||||
* | copy-edits an exception message | Xavier Noria | 2016-08-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | Inserted spaces in the name of Rails components. Since I was on it, also used PostgreSQL instead of Postgres because albeit Postgres is an accepted alias, PostgreSQL is the official name and the actual name of the adapter. See https://wiki.postgresql.org/wiki/ProjectName with regard to PostgreSQL vs Postgres. | ||||
* | applies new string literal convention in actioncable/lib | Xavier Noria | 2016-08-06 | 4 | -17/+17 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | Add guard to broadcast. | mmmpa | 2016-05-26 | 1 | -1/+5 |
| | |||||
* | Log if redis connection is in stale/failed state. | Vipul A M | 2016-04-21 | 1 | -0/+4 |
| | |||||
* | Evented Redis adapter: log reconnect failures as errors, not just info | Jeremy Daer | 2016-03-17 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | Support faye-websocket + EventMachine as an option | Matthew Draper | 2016-03-02 | 3 | -11/+18 |
| | |||||
* | Merge pull request #23916 from ↵ | Jeremy Daer | 2016-02-26 | 1 | -2/+6 |
|\ | | | | | | | | | lifo/same-redis-connection-for-subscription-and-broadcast Always use redis_connector to create redis connections | ||||
| * | Use redis_connector to create redis connections for both subscriptions and ↵ | Pratik Naik | 2016-02-26 | 1 | -2/+6 |
| | | | | | | | | broadcasts | ||||
* | | Full Action Cable documentation read through | Jon Moss | 2016-02-17 | 1 | -2/+2 |
|/ | | | | | | | | | This PR checks all active Action Cable documentation for typos and other fixes. It aims to make sure that when Rails 5 is released, that the Action Cable docs are up to snuff with the other documentation included with Rails. [ci skip] | ||||
* | Allow for non-standard redis connectors | David Heinemeier Hansson | 2016-02-04 | 2 | -3/+15 |
| | |||||
* | Switch the default redis adapter to a single-stream model | Matthew Draper | 2016-02-01 | 2 | -30/+193 |
| | | | | | | This new adapter does get a little more intimate with the redis-rb gem's implementation than I would like, but it's the least bad of the approaches I've come up with. | ||||
* | Synchronize the lazy setters in Server | Matthew Draper | 2016-01-30 | 4 | -8/+31 |
| | | | | They're all at risk of races on the first requests. | ||||
* | Revert "Revert "Eliminate the EventMachine dependency"" | Matthew Draper | 2016-01-30 | 3 | -4/+20 |
| | |||||
* | Revert "Eliminate the EventMachine dependency" | David Heinemeier Hansson | 2016-01-27 | 3 | -20/+4 |
| | |||||
* | Using a hacked faye-websocket, drop EventMachine | Matthew Draper | 2016-01-24 | 3 | -4/+20 |
| | |||||
* | Allow subscription adapters to be shut down | Matthew Draper | 2016-01-24 | 4 | -14/+40 |
| | |||||
* | Add Async and Inline adapters | Matthew Draper | 2016-01-24 | 2 | -0/+44 |
| | | | | | Just like their ActiveJob equivalents, these only work within the current process. | ||||
* | Normalize on no arguments for the success callback | Matthew Draper | 2016-01-24 | 1 | -1/+1 |
| | |||||
* | Split internal subscriber tracking from Postgres adapter | Matthew Draper | 2016-01-24 | 2 | -23/+66 |
| | |||||
* | Use the correct reference to the redis connection | Brit Gardner | 2016-01-22 | 1 | -1/+1 |
| | | | | | Fixes #23193 This was throwing `There was an exception - NameError(undefined local variable or method `hi_redis_conn' for #<ActionCable::SubscriptionAdapter::Redis:0x007fb1449e2b70>)` on unsubscribe. | ||||
* | Merge pull request #22950 from maclover7/adapterize-storage-actioncable | Matthew Draper | 2016-01-20 | 2 | -8/+6 |
| | | | | Adapterize storage for ActionCable | ||||
* | Fix code review comments | Jon Moss | 2016-01-18 | 2 | -30/+19 |
| | | | | | | | - adapter -> pubsub (re)rename internally - Change variable names to match method names - Add EventMachine `~> 1.0` as a runtime dependency of ActionCable - Refactor dependency loading for adapters | ||||
* | Small PostgreSQL adapter refactors / cleanup | Jon Moss | 2016-01-18 | 1 | -14/+16 |
| | | | | | - Escape the channel name when subscribing in PG - Refactor popping the queue to make it easier to read | ||||
* | ActionCable::StorageAdapter ==> ActionCable::SubscriptionAdapter | Jon Moss | 2016-01-18 | 3 | -0/+170 |