You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ib...@apache.org on 2021/02/08 08:43:14 UTC

[ignite] branch master updated (8489c4f -> 8607394)

This is an automated email from the ASF dual-hosted git repository.

ibessonov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git.


    from 8489c4f  IGNITE-14069 Added release notes for 2.10 version (#8748)
     add 8607394  IGNITE-14055 Execution of timeout handshake object moved to the separated scheduled thread pool (#8698)

No new revisions were added by this update.

Summary of changes:
 .../spi/communication/tcp/TcpCommunicationSpi.java |  16 +-
 .../tcp/internal/ConnectionClientPool.java         |  39 ++-
 .../tcp/internal/GridNioServerWrapper.java         | 284 +++------------------
 .../tcp/internal/HandshakeTimeoutObject.java       |  55 ++--
 .../tcp/internal/TcpHandshakeExecutor.java         | 284 +++++++++++++++++++++
 .../tcp/TcpCommunicationHandshakeTimeoutTest.java  | 151 +++++++++++
 .../IgniteSpiCommunicationSelfTestSuite.java       |   2 +
 7 files changed, 516 insertions(+), 315 deletions(-)
 create mode 100644 modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/internal/TcpHandshakeExecutor.java
 create mode 100644 modules/core/src/test/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationHandshakeTimeoutTest.java