Don't wait for netty to shut down (#6271)
This commit is contained in:
parent
3e08f36cfa
commit
81de0d8906
|
@ -50,7 +50,7 @@ class Netty40ClientSslTest extends AgentInstrumentationSpecification {
|
||||||
|
|
||||||
def cleanupSpec() {
|
def cleanupSpec() {
|
||||||
server.stop().get(10, TimeUnit.SECONDS)
|
server.stop().get(10, TimeUnit.SECONDS)
|
||||||
eventLoopGroup.shutdownGracefully().sync()
|
eventLoopGroup.shutdownGracefully()
|
||||||
}
|
}
|
||||||
|
|
||||||
def "should fail SSL handshake"() {
|
def "should fail SSL handshake"() {
|
||||||
|
|
|
@ -52,7 +52,7 @@ class Netty41ClientSslTest extends AgentInstrumentationSpecification {
|
||||||
|
|
||||||
def cleanupSpec() {
|
def cleanupSpec() {
|
||||||
server.stop().get(10, TimeUnit.SECONDS)
|
server.stop().get(10, TimeUnit.SECONDS)
|
||||||
eventLoopGroup.shutdownGracefully().sync()
|
eventLoopGroup.shutdownGracefully()
|
||||||
}
|
}
|
||||||
|
|
||||||
def "should fail SSL handshake"() {
|
def "should fail SSL handshake"() {
|
||||||
|
|
Loading…
Reference in New Issue