NSAmelchev commented on code in PR #12895:
URL: https://github.com/apache/ignite/pull/12895#discussion_r3001615255


##########
modules/core/src/main/java/org/apache/ignite/internal/processors/service/ServiceDeploymentRequest.java:
##########
@@ -17,27 +17,36 @@
 
 package org.apache.ignite.internal.processors.service;
 
+import org.apache.ignite.IgniteCheckedException;
+import org.apache.ignite.internal.Order;
 import org.apache.ignite.internal.util.typedef.internal.S;
+import org.apache.ignite.internal.util.typedef.internal.U;
 import org.apache.ignite.lang.IgniteUuid;
+import org.apache.ignite.marshaller.Marshaller;
+import org.apache.ignite.plugin.extensions.communication.MarshallableMessage;
 import org.jetbrains.annotations.NotNull;
 
 /**
  * Service deployment request.
  */
-public class ServiceDeploymentRequest extends ServiceChangeAbstractRequest {
-    /** */
-    private static final long serialVersionUID = 0L;
-
+public class ServiceDeploymentRequest extends ServiceChangeAbstractRequest 
implements MarshallableMessage {
     /** Service configuration. */
-    private final LazyServiceConfiguration cfg;
+    private LazyServiceConfiguration cfg;
+
+    /** JDK serialization for cfg */
+    @Order(0)
+    byte[] configBytes;

Review Comment:
   ```suggestion
       byte[] cfgBytes;
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to