diff options
author | Matthew Draper <matthew@trebex.net> | 2017-02-23 10:48:30 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2017-02-23 10:48:30 +1030 |
commit | 3721b859b605233ae577453532e71b0a969e8116 (patch) | |
tree | 3ba64cf17f45af24764cda4d609f344aae210b0f /actioncable/test | |
parent | 630e709ea6cb535b45a9cbd89c08c572646f5608 (diff) | |
download | rails-3721b859b605233ae577453532e71b0a969e8116.tar.gz rails-3721b859b605233ae577453532e71b0a969e8116.tar.bz2 rails-3721b859b605233ae577453532e71b0a969e8116.zip |
Deprecate the EventedRedis subscription adapter
Unlike Faye support, it seems a bit too documented to remove without
warning. So, here's a warning.
Diffstat (limited to 'actioncable/test')
-rw-r--r-- | actioncable/test/subscription_adapter/evented_redis_test.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actioncable/test/subscription_adapter/evented_redis_test.rb b/actioncable/test/subscription_adapter/evented_redis_test.rb index c55d35848e..256458bc24 100644 --- a/actioncable/test/subscription_adapter/evented_redis_test.rb +++ b/actioncable/test/subscription_adapter/evented_redis_test.rb @@ -7,7 +7,9 @@ class EventedRedisAdapterTest < ActionCable::TestCase include ChannelPrefixTest def setup - super + assert_deprecated do + super + end # em-hiredis is warning-rich @previous_verbose, $VERBOSE = $VERBOSE, nil |