mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Remove unnecessary calls to abort_on_exception
This commit is contained in:
parent
4d7542e75f
commit
5f84f37944
4 changed files with 0 additions and 8 deletions
|
@ -51,7 +51,6 @@ class TestCLI < Minitest::Test
|
|||
"test/rackup/lobster.ru"], @events
|
||||
|
||||
t = Thread.new do
|
||||
Thread.current.abort_on_exception = true
|
||||
cli.run
|
||||
end
|
||||
|
||||
|
@ -83,7 +82,6 @@ class TestCLI < Minitest::Test
|
|||
"test/rackup/lobster.ru"], @events
|
||||
|
||||
t = Thread.new { cli.run }
|
||||
t.abort_on_exception = true
|
||||
|
||||
wait_booted
|
||||
|
||||
|
@ -117,7 +115,6 @@ class TestCLI < Minitest::Test
|
|||
"test/rackup/lobster.ru"], @events
|
||||
|
||||
t = Thread.new { cli.run }
|
||||
t.abort_on_exception = true
|
||||
|
||||
wait_booted
|
||||
|
||||
|
@ -141,7 +138,6 @@ class TestCLI < Minitest::Test
|
|||
"test/rackup/lobster.ru"], @events
|
||||
|
||||
t = Thread.new { cli.run }
|
||||
t.abort_on_exception = true
|
||||
|
||||
wait_booted
|
||||
|
||||
|
@ -161,7 +157,6 @@ class TestCLI < Minitest::Test
|
|||
"test/rackup/lobster.ru"], @events
|
||||
|
||||
t = Thread.new do
|
||||
Thread.current.abort_on_exception = true
|
||||
cli.run
|
||||
end
|
||||
|
||||
|
|
|
@ -83,7 +83,6 @@ class TestPumaControlCli < Minitest::Test
|
|||
|
||||
control_cli = Puma::ControlCLI.new (opts + ["start"]), @ready, @ready
|
||||
t = Thread.new do
|
||||
Thread.current.abort_on_exception = true
|
||||
control_cli.run
|
||||
end
|
||||
|
||||
|
|
|
@ -30,7 +30,6 @@ class TestPathHandler < Minitest::Test
|
|||
@launcher = s
|
||||
end
|
||||
end
|
||||
thread.abort_on_exception = true
|
||||
|
||||
# Wait for launcher to boot
|
||||
Timeout.timeout(10) do
|
||||
|
|
|
@ -38,7 +38,6 @@ ARGV[1].to_i.times do
|
|||
do_test(st, size)
|
||||
end
|
||||
|
||||
t.abort_on_exception = true
|
||||
threads << t
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue