I’m new to Conductor workflows and tried creating a DO_WHILE
task that should loop until the status is different from ‘Pending’, but the loop isn’t working as expected.
Answer:
- Check the condition you are using in the
loopCondition
. For example:
$.gpi_tracker_status_check_ref['status'] != 'Pending'
- Ensure the logic of the loop correctly matches your expected output.
- Refer to Orkes Conductor Documentation - Do While for more examples and details.