Hi team ,
please clarify the below points of flow
```id: bash_file_ups_dop_archieve
namespace: io.kestra.
inputs:
- type: STRING
name: source_filepath
- type: STRING
name: opp_type
tasks:
- id: parallel_flow
type: io.kestra.core.tasks.flows.Parallel
tasks:
- id: file_load_summary
type: io.kestra.core.tasks.flows.Flow
namespace: io.kestra.diwo.dev.ups
inputs:
source_id: "{{inputs.source_id}}"
sort_type: "{{inputs.sort_type}}"
load_id: "{{execution.id}}"
source_filepath: "{{inputs.source_filepath}}"
target_filepath: "{{ inputs.source_filepath.replace('.xlsx', 'summary.csv').replace('.xls', 'summary.csv') }}"
opp_type: "{{inputs.opp_type}}"
flowId: bash_file_ups_dop_12345
wait: true
transmitFailed: true
- id: file_load_bayarea
type: io.kestra.core.tasks.flows.Flow
namespace: io.kestra.diwo.dev.ups
inputs:
source_id: "{{inputs.source_id}}"
sort_type: "{{inputs.sort_type}}"
load_id: "{{execution.id}}"
source_filepath: "{{inputs.source_filepath}}"
target_filepath: "{{ inputs.source_filepath.replace('.xlsx', 'bayarea.csv').replace('.xls', 'bayarea.csv') }}"
opp_type: "{{inputs.opp_type}}"
flowId: bash_file_ups_bayarea_12345
wait: true
transmitFailed: true
- id: file_load_workarea
type: io.kestra.core.tasks.flows.Flow
namespace: io.kestra.diwo.dev.ups
inputs:
source_id: "{{inputs.source_id}}"
sort_type: "{{inputs.sort_type}}"
load_id: "{{execution.id}}"
source_filepath: "{{inputs.source_filepath}}"
target_filepath: "{{ inputs.source_filepath.replace('.xlsx', 'workarea.csv').replace('.xls', 'workarea.csv') }}"
opp_type: "{{inputs.opp_type}}"
flowId: bash_file_ups_workarea
wait: true
transmitFailed: true
- id: archieve_flow
type: io.kestra.core.tasks.flows.Sequential
tasks:
- id: file_archieve
type: io.kestra.core.tasks.flows.Flow
namespace: io.kestra.diwo.dev.ups
inputs:
load_id: "{{execution.id}}"
source_filepath: "{{inputs.source_filepath}}"
flowId: bash_file_archieve```
here in id parallel_flow i am triggering three subflow and each have their error block,so can you please if i am getting any error in parallel_flow then will id - archieve flow be triggered or not ?