Skip to content

Commit

Permalink
IGNITE-24224 Fixed NIO server broken message serialization with SSL e…
Browse files Browse the repository at this point in the history
…nabled.
  • Loading branch information
petrov-mg committed Jan 22, 2025
1 parent a6a9e1b commit 570d203
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,13 @@ public void test() throws Exception {
}

/** */
public GridNioRecoveryDescriptor extractDescriptor(ClusterNode node) {
public GridNioRecoveryDescriptor extractDescriptor(ClusterNode node) throws Exception {
CommunicationSpi<Message> spi = spis.get(node.id());

GridNioServerWrapper wrapper = U.field(spi, "nioSrvWrapper");

assertTrue(waitForCondition(() -> !wrapper.recoveryDescs().values().isEmpty(), getTestTimeout()));

return wrapper.recoveryDescs().values().stream().findFirst().get();
}

Expand Down

0 comments on commit 570d203

Please sign in to comment.