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:
- Introduction to errors and warnings in Make
- Overview of error handling in Make
- Error handlers
- Overview of error handling in Make
- Watch these videos by Make - Learn all about error handling (YouTube playlist)
- Webhook Error Handling
- Types of Errors (including RateLimitError HTTP 429: too many requests)
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
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 | Tutorials – Make “Manual”
- Make Academy – Basics 101: Learn Make and get certified
Help Centre Basics
- Mapping – What is mapping? What can I map?
- Mapping with arrays – How to map items in an array
- Aggregate an array for mapping complex fields
- Date Format: tokens for
parseDate
| tokens forformatDate
- HTTP modules – Make a request, Get (download) a file
- Webhooks – Error Handling, Responding to webhooks
Articles & Videos
- Router Magic Formula - YouTube
- Error Handlers in Make - YouTube playlist
- Getting started with OpenAI - How to setup and use OpenAI (ChatGPT) in Make
- How to use Regex in Make - How to use pattern matching to extract the text you want
- Webhooks – Make Academy – tutorial on how to use Webhooks
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!
ok @samliew , it’s clear, thanks for your help.