diff options
author | Matthew Draper <matthew@trebex.net> | 2016-09-28 06:44:23 +0930 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2016-09-28 06:44:23 +0930 |
commit | 5d92089bcae42275953ad310b24f5dd66ff0ec6e (patch) | |
tree | d97c8b35275ffd6353840090d3e261cc931cc917 /actioncable/test/stubs | |
parent | 21ecf42730de2004a95d913038c1f417c24496be (diff) | |
download | rails-5d92089bcae42275953ad310b24f5dd66ff0ec6e.tar.gz rails-5d92089bcae42275953ad310b24f5dd66ff0ec6e.tar.bz2 rails-5d92089bcae42275953ad310b24f5dd66ff0ec6e.zip |
Buffer writes to the cable sockets
Otherwise, they can sometimes block, leading to reduced system
throughput.
Diffstat (limited to 'actioncable/test/stubs')
-rw-r--r-- | actioncable/test/stubs/test_server.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actioncable/test/stubs/test_server.rb b/actioncable/test/stubs/test_server.rb index b64ff33789..02be72d0cb 100644 --- a/actioncable/test/stubs/test_server.rb +++ b/actioncable/test/stubs/test_server.rb @@ -28,7 +28,9 @@ class TestServer @event_loop ||= if @config.use_faye ActionCable::Connection::FayeEventLoop.new else - ActionCable::Connection::StreamEventLoop.new + ActionCable::Connection::StreamEventLoop.new.tap do |loop| + loop.instance_variable_set(:@executor, Concurrent.global_io_executor) + end end end |