Disable automatic reprocessing on failure (scheduled scenario)

Hello Everyone,

I’m new to Make.com and I’m loving my experience here.

I have a scheduled scenario that runs daily. If it fails on Day 1, it automatically reprocesses every ~20 minutes ( I think 3-5 times ).

I’d like to stop this automatic reprocessing entirely — the scenario should fail and stop for that run, but the daily schedule must remain active so it runs again on Day 2 as usual.

Could you please confirm how to configure this behavior (through scenario settings or error handling) so failed runs don’t retry, but scheduling isn’t paused?

Hey!

Could you share a screenshot of your scenario? Need to see if you’re using any error handlers (Break, Rollback, Resume, Commit) to give you the exact fix.

The retries could be happening because of one of these:

  1. Incomplete executions are enabled in your scenario settings
  2. Error handler is configured with retry attempts

Screenshot will tell me which one it is and exactly what to change.

Sam @ Flow Digital

Sure, here is the screenshot.

Hey there,

and which part is failing and being retried?

What I want is that if any part of this flow fails, don’t retry the whole flow again after 20 mins.

As of now, if any part of flow fails, the system tries to run the flow again after 20 mins.

I think what’s happening is that the scenario is scheduled to run every 20 mins. Cause you don’t have any error handling setup, so if it fails, its not going to run again.

Nope, the scenario is scheduled to run every 6 hours ( see screenshot below ), but when it fails, it pauses for 20 mins and then try to re-execute again every 20 mins, until it succeeds ( see screenshot ).

This might be a bug.

To explicitly make the scenario ignore any errors, simply add an error handler with an Ignore Directive to the module(s) that regularly fail.

Handle errors so scenarios don’t stop.

You might want to add some error handling to your modules to handle exceptions, so the failing module(s) can automatically be retried or ignored. By handling any errors by adding a “Error handler” to the module, the scenario won’t throw an error and get turned off.

Error directives can only be added to an error handler route.

1. Right click and select “Add error handler”

2. Error handlers will appear

For more information on error handling, see:

Hope this helps! If you are still having trouble, please provide more details.

@samliew

For me any module can fail and adding error handler to each module doesn’t seem to be a elegant solution.

There should be an option to disable complete flow re processing if any of it’s part fail. I’m sure this is not a bug, but some setting is causing it as it happens with all my flows.

Hello,

Make.com quietly added an exponential backoff feature in ~February 2025.

You can learn more here: Exponential backoff - Help Center

I submitted a suggestion via the suggestion portal to make it optional, but it hasn’t received any upvotes yet (:sweat_smile: ).

Personally, I think users should be able to decide whether Make handles errors without their knowledge.

I know this feature is designed for non-tech people to help them, but in advanced workflows or complex business scenarios where humans interact with systems immediately in case of errors, it is crucial to have full control over workflows.

https://www.make.com/en/platform-ideas/p/ability-to-turn-off-auto-exponential-backoff-per-scenario-per-account

1 Like

Absolutely agree, and I just voted!

I think I’m still half correct to say that to prevent automatic exponential backoff retry, we should still use an Ignore handler to prevent the error from being thrown, especially if errors are expected occasionally.

Yes, I can confirm that works.

But we often need to use other error handling and do not have exponential backoff. Hope someone from Make team will take a look on this thread.

1 Like

Thanks for the help. Hope Make.com adds this “feature” as optional.

1 Like