Dmitry Werner created IGNITE-27780:
--------------------------------------
Summary: Unify the serialization logic of invokeArgsBytes
Key: IGNITE-27780
URL: https://issues.apache.org/jira/browse/IGNITE-27780
Project: Ignite
Issue Type: Task
Reporter: Dmitry Werner
Assignee: Dmitry Werner
During the refactoring of the messages GridNearAtomicSingleUpdateInvokeRequest,
GridDhtAtomicUpdateRequest, and GridNearAtomicFullUpdateRequest, the type of
the field invokeArgsBytes was changed from byte[][] to List<byte[]>.
It is necessary to unify the serialization logic of invokeArgsBytes in
accordance with GridNearAtomicFullUpdateRequest the other two messages:
{code:java}
if (!F.isEmpty(invokeArgs) && invokeArgsBytes == null)
invokeArgsBytes = Arrays.asList(marshalInvokeArguments(invokeArgs, cctx));
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)