From b823330a75c74a591f0288c6965866df5d174196 Mon Sep 17 00:00:00 2001 From: Tudor Malene Date: Wed, 6 Jun 2018 15:13:17 +0100 Subject: [PATCH] ENT-2036 handle ClosedChannelException during ssl handshake (#934) * ENT-2036 handle ClosedChannelException during ssl handshake * ENT-2036 address code review comments and revert AMQPChannelHandler as it will be fixed in OS first --- .../net/corda/node/services/statemachine/HardRestartTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/integration-test/kotlin/net/corda/node/services/statemachine/HardRestartTest.kt b/node/src/integration-test/kotlin/net/corda/node/services/statemachine/HardRestartTest.kt index 6c73070cba..f2cf46adef 100644 --- a/node/src/integration-test/kotlin/net/corda/node/services/statemachine/HardRestartTest.kt +++ b/node/src/integration-test/kotlin/net/corda/node/services/statemachine/HardRestartTest.kt @@ -27,7 +27,6 @@ import java.util.concurrent.CountDownLatch import java.util.concurrent.Executors import kotlin.concurrent.thread -@Ignore class HardRestartTest : IntegrationTest() { companion object { @ClassRule @@ -81,6 +80,7 @@ class HardRestartTest : IntegrationTest() { returnValue.getOrThrow() } + pongRestartThread.join() } } @@ -169,4 +169,4 @@ class HardRestartTest : IntegrationTest() { } } } -} \ No newline at end of file +}