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 c66c6538276 IGNITE-26405 Fix GridDhtUnlockRequest serialization 
(#12334)
c66c6538276 is described below

commit c66c65382766ff49cb1eb97311405df141615b41
Author: Dmitry Werner <[email protected]>
AuthorDate: Thu Sep 11 16:20:48 2025 +0500

    IGNITE-26405 Fix GridDhtUnlockRequest serialization (#12334)
---
 .../processors/cache/distributed/dht/GridDhtUnlockRequest.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridDhtUnlockRequest.java
 
b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridDhtUnlockRequest.java
index c509493b922..a1921414f98 100644
--- 
a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridDhtUnlockRequest.java
+++ 
b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridDhtUnlockRequest.java
@@ -110,7 +110,7 @@ public class GridDhtUnlockRequest extends 
GridDistributedUnlockRequest {
 
         switch (writer.state()) {
             case 8:
-                if (!writer.writeCollection(nearKeys, 
MessageCollectionItemType.MSG))
+                if (!writer.writeCollection(nearKeys, 
MessageCollectionItemType.KEY_CACHE_OBJECT))
                     return false;
 
                 writer.incrementState();
@@ -129,7 +129,7 @@ public class GridDhtUnlockRequest extends 
GridDistributedUnlockRequest {
 
         switch (reader.state()) {
             case 8:
-                nearKeys = 
reader.readCollection(MessageCollectionItemType.MSG);
+                nearKeys = 
reader.readCollection(MessageCollectionItemType.KEY_CACHE_OBJECT);
 
                 if (!reader.isLastRead())
                     return false;

Reply via email to