I have a module that sometimes gets an error. usually a second retry would work but its not guaranteed.
i added a break error handler to try the module 3 times.
but just to be safe i want to add an http request module that will alert me when the attempts fail.
how can i do that? because it doesnt let me add more modules after the error handler.
Hi @Barad_Dediashwili , You can right-click on chain between WooCommerce and Break modules to Add a module between them. Whenever the error is thrown, it will activate HTTP request and then go through Break repeat option; I’m not sure about how ‘Break’ works though.
Welcome to the Make community!
You cannot chain modules after a break module.
What you can do is perform a clone of the module, with a resume module.
Then, chain multiple clones of the module as error handlers for themselves.
Here is an example:
You can add sleep modules as needed.
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.
Break retries the module after X minutes. so the thing is - will the Break still work on the woocommerce module if its not directly connected to it? probably not. it will work on the http request.