aboutsummaryrefslogtreecommitdiffstats
path: root/actionsystemtest/lib
diff options
context:
space:
mode:
authoreileencodes <eileencodes@gmail.com>2016-11-18 15:10:14 -0500
committereileencodes <eileencodes@gmail.com>2017-02-20 15:07:34 -0500
commit4f98b63317a13f8f3331faff4356fe961dfc00b6 (patch)
treeafc7375283de4c4a2610c8b101de999b59f891d2 /actionsystemtest/lib
parent7ebd072d4999870f39c4aa95240360d497379e54 (diff)
downloadrails-4f98b63317a13f8f3331faff4356fe961dfc00b6.tar.gz
rails-4f98b63317a13f8f3331faff4356fe961dfc00b6.tar.bz2
rails-4f98b63317a13f8f3331faff4356fe961dfc00b6.zip
Use 1 thread instead of 4 with Puma server for system tests
Diffstat (limited to 'actionsystemtest/lib')
-rw-r--r--actionsystemtest/lib/action_system_test/driver_adapters/web_server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionsystemtest/lib/action_system_test/driver_adapters/web_server.rb b/actionsystemtest/lib/action_system_test/driver_adapters/web_server.rb
index 97e5df95b7..22d8799fee 100644
--- a/actionsystemtest/lib/action_system_test/driver_adapters/web_server.rb
+++ b/actionsystemtest/lib/action_system_test/driver_adapters/web_server.rb
@@ -26,7 +26,7 @@ module ActionSystemTest
end
def register_puma(app, port)
- Rack::Handler::Puma.run(app, Port: port, Threads: "0:4")
+ Rack::Handler::Puma.run(app, Port: port, Threads: "0:1")
end
def register_webrick(app, port)