Skip to content

Commit

Permalink
[646] Client shutdown removed from ConnectSynchronouslyHangTest
Browse files Browse the repository at this point in the history
Bug: eclipse-ee4j#646
Signed-off-by: Vladimir Golyakov <[email protected]>
  • Loading branch information
wgolyakov committed Mar 5, 2021
1 parent bb7333f commit c87e7a5
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,11 @@ public void testConnectSynchronouslyHang() throws IOException, InterruptedExcept
clientThread = new Thread() {
@Override
public void run() {
ClientManager client = ClientManager.createClient(JdkClientContainer.class.getName());
try {
ClientManager client = ClientManager.createClient(JdkClientContainer.class.getName());
client.connectToServer(AnnotatedClientEndpoint.class, getURI("/any-endpoint", "wss"));
} catch (Exception e) {
// ignore
} finally {
client.shutdown();
}
}
};
Expand Down

0 comments on commit c87e7a5

Please sign in to comment.