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

petrov-mg 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 46f54000f27 IGNITE-28915 Reused existing operation context snapshot 
for discovery ack messages. (#13404)
46f54000f27 is described below

commit 46f54000f27b05314155c2a8ff5decf5e47c7d1f
Author: Mikhail Petrov <[email protected]>
AuthorDate: Tue Jul 28 11:26:11 2026 +0300

    IGNITE-28915 Reused existing operation context snapshot for discovery ack 
messages. (#13404)
---
 .../src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java
 
b/modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java
index 02a626abe55..1d70baed0aa 100644
--- 
a/modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java
+++ 
b/modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java
@@ -5968,7 +5968,7 @@ class ServerImpl extends TcpDiscoveryImpl {
                                 getLocalNodeId(), nextMsg);
 
                             ackMsg.topologyVersion(msg.topologyVersion());
-                            
ackMsg.attachOperationContextSnapshot(operationCtxDispatcher.createSnapshot());
+                            
ackMsg.attachOperationContextSnapshot(msg.opCtxSnp);
 
                             processCustomMessage(ackMsg, waitForNotification);
                         }

Reply via email to