Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
condition fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
manan164 committed Feb 21, 2020
1 parent 02515f5 commit 6022b53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1849,7 +1849,7 @@ private void createDoWhileWorkflowWithIteration(int iteration, boolean isInputPa

workflowDef.getTasks().add(loopTask);

if (iteration ==2) {
if (iteration == 2 && isInputParameter == false) {
TaskDef taskDef2 = new TaskDef();
taskDef2.setName("loopTask2");
taskDef2.setTimeoutSeconds(200);
Expand Down

0 comments on commit 6022b53

Please sign in to comment.