This is an automated email from the ASF dual-hosted git repository.
shishkovilja pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new 7bc011c394f IGNITE-26757 Fix incorrect instance name in
GridNioServerWrapper (#12483)
7bc011c394f is described below
commit 7bc011c394fc535affc2ccd4c03fa127163d623c
Author: Ilya Shishkov <[email protected]>
AuthorDate: Fri Oct 31 09:56:52 2025 +0300
IGNITE-26757 Fix incorrect instance name in GridNioServerWrapper (#12483)
---
.../org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java
b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java
index c74814b76af..02efe024225 100755
---
a/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java
+++
b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java
@@ -659,7 +659,7 @@ public class TcpCommunicationSpi extends
TcpCommunicationConfigInitializer {
commWorker,
ignite.configuration(),
this.srvLsnr,
- getName(),
+ igniteInstanceName,
getWorkersRegistry(ignite),
ignite instanceof IgniteEx ? ((IgniteEx)ignite).context().metric()
: null,
this::createTcpClient,