dionusos commented on a change in pull request #64:
URL: https://github.com/apache/oozie/pull/64#discussion_r783277888



##########
File path: core/src/main/java/org/apache/oozie/command/wf/SignalXCommand.java
##########
@@ -468,21 +468,54 @@ else if (!workflowActionBeanListForForked.isEmpty() && 
!checkForSuspendNode(work
 
     public void startForkedActions(List<WorkflowActionBean> 
workflowActionBeanListForForked) throws CommandException {
 
-        List<CallableWrapper<ActionExecutorContext>> tasks = new 
ArrayList<CallableWrapper<ActionExecutorContext>>();
         List<UpdateEntry> updateList = new ArrayList<UpdateEntry>();
         List<JsonBean> insertList = new ArrayList<JsonBean>();
 
         boolean endWorkflow = false;
         boolean submitJobByQueuing = false;
-        for (WorkflowActionBean workflowActionBean : 
workflowActionBeanListForForked) {
-            LOG.debug("Starting forked actions parallely : " + 
workflowActionBean.getId());
-            tasks.add(Services.get().get(CallableQueueService.class).new 
CallableWrapper<ActionExecutorContext>(
-                    new ForkedActionStartXCommand(wfJob, 
workflowActionBean.getId(), workflowActionBean.getType()), 0));
-        }
 
         try {
-            List<Future<ActionExecutorContext>> futures = 
Services.get().get(CallableQueueService.class)
-                    .invokeAll(tasks);
+            /**

Review comment:
       remove the second * please




-- 
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: dev-unsubscr...@oozie.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to