In the figure below, why does the Foreach contour container not work despite being processed correctly?
How can I get a loop to continue after processing the failure path?

If this helps to find out what is going on in the package, here is the gist:
We have a requirement that data from Excel files are loaded into the database. The package that we divided each Excel file into composite CSV files (one CSV per sheet) and loads the CSV into the database. it is possible that some of the sheets have problems (missing columns, data type of mismatch, etc.), and such erroneous CSV files are fixed by the crash of the DFT path. Ideally, the package should resume processing the remaining CSVs, as well as the rest of the Excel files, and successfully complete the work.
source share