My scenario doesn't continue after "Ignore" error handler

Hello,
I don’t understand why me scenario doesn’t continue with the “Ignore” Error handler.
After the Stability module, I add a router which checks if “file_name” exists or not.
But the scenario goes in the error and then stops.
I read other topics related to that but don’t understand my issue.
Thank you for your help.
JB

That’s what Ignore does. It terminates the current bundle’s cycle, and continues with the next bundle.

Did you mean to use RESUME instead?

For more information on error handling, see:

Hope this helps! Let me know if there are any further questions or issues.

@samliew


P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!

Hello @samliew
Thanks for answer.

I’m not sure to understand well.
It terminates the current bundle’s cycle => Stability AI in my case, because it returned an error
and continues with the next bundle => should be the router and following steps. But it doesn’t go there, it stops after “Ignore” module.

Sorry if I’m a bit slow to understand :sweat_smile:

This is incorrect. The same first bundle does not proceed to the next module (router), because it the first module throws an error, proceeds to the error handling route, and already ended by the Ignore directive. This means the bundle cannot run any more to the next module (router).

There are no second bundle coming out of your trigger module, so the whole scenario ends.

I strongly suggest doing the Make Academy, this is explained very clearly there.

Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —

Getting Started

Help Centre Basics

Articles & Videos

Hope this helps! Let me know if there are any further questions or issues.

@samliew


P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!

2 Likes

ok @samliew , it’s clear, thanks for your help.

1 Like