ashulin commented on code in PR #2638:
URL: 
https://github.com/apache/incubator-seatunnel/pull/2638#discussion_r962274482


##########
seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/dag/execution/ExecutionPlanGenerator.java:
##########
@@ -157,7 +157,7 @@ private void createExecutionVertex(LogicalVertex 
logicalVertex) {
         final long newId = idGenerator.getNextId();
         Action newAction;
         if (chainedVertices.size() < 1) {
-            newAction = recreateAction(logicalVertex.getAction(), newId);
+            newAction = recreateAction(logicalVertex.getAction(), newId, 
logicalVertex.getParallelism());
         } else {
             List<SeaTunnelTransform> transforms = new 
ArrayList<>(chainedVertices.size());
             List<String> names = new ArrayList<>(chainedVertices.size());

Review Comment:
   Need to change line 178?



-- 
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