diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2016-02-05 11:56:16 +0100 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2016-02-05 15:23:34 +0100 |
commit | 7fe32d28a8e73bfa826773c5a8777a316126cd38 (patch) | |
tree | 35a65454efaad16faa696f682873aee0c3ff5183 /actioncable/test/client_test.rb | |
parent | fbab5c7e6a9df3533f8b0fa8d6609ac9ec3ba399 (diff) | |
download | rails-7fe32d28a8e73bfa826773c5a8777a316126cd38.tar.gz rails-7fe32d28a8e73bfa826773c5a8777a316126cd38.tar.bz2 rails-7fe32d28a8e73bfa826773c5a8777a316126cd38.zip |
Cant run on an out-of-the-box OSX installation without running out of TOO MANY FILES OPEN
Diffstat (limited to 'actioncable/test/client_test.rb')
-rw-r--r-- | actioncable/test/client_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/test/client_test.rb b/actioncable/test/client_test.rb index 199d2b90a3..4ade9832e0 100644 --- a/actioncable/test/client_test.rb +++ b/actioncable/test/client_test.rb @@ -187,7 +187,7 @@ class ClientTest < ActionCable::TestCase def test_many_clients with_puma_server do |port| - clients = 200.times.map { faye_client(port) } + clients = 100.times.map { faye_client(port) } clients.map {|c| Concurrent::Future.execute { c.send_message command: 'subscribe', identifier: JSON.dump(channel: 'EchoChannel') |