jeremy98
Honored Contributor

Hi, 

I found that the problem is here:

       - task_key: get_email_infos
          max_retries: 3
          min_retry_interval_millis: 150000
          depends_on:
            - task_key: check_type_of_trigger
              outcome: "true"
            - task_key: check_status_to_schedule
              outcome: "false"
...

the `depends on` is sequential but since the first is not set from the flow instead the second yes, this task it's not run. How can I fix this?