mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Fix bad skip
This commit is contained in:
parent
a4b8857c04
commit
89be0977fc
1 changed files with 3 additions and 3 deletions
|
@ -63,7 +63,7 @@ class TestCLI < Minitest::Test
|
|||
end
|
||||
|
||||
def test_control_for_ssl
|
||||
skip :jruby # Hangs on CI, TODO fix
|
||||
skip_on :jruby # Hangs on CI, TODO fix
|
||||
require "net/http"
|
||||
control_port = UniquePort.call
|
||||
control_host = "127.0.0.1"
|
||||
|
@ -94,8 +94,8 @@ class TestCLI < Minitest::Test
|
|||
assert_equal([:started_at, :backlog, :running, :pool_capacity, :max_threads, :requests_count], Puma.stats.keys)
|
||||
|
||||
ensure
|
||||
cli.launcher.stop
|
||||
t.join
|
||||
cli.launcher.stop if cli
|
||||
t.join if t
|
||||
end
|
||||
|
||||
def test_control_clustered
|
||||
|
|
Loading…
Reference in a new issue