What is your goal?
I want to make a production-critical Make scenario resilient to temporary third-party connection failures.
Ideally, if a connection such as Google Sheets temporarily returns a 500 error during scenario initialization, I want the scenario to either automatically retry or continue operating without the temporary failure disabling the entire workflow.
What is the problem & what have you tried?
This morning, one of my production scenarios failed during initialization because Make was temporarily unable to verify an existing Google connection.
The connection had been working normally for approximately three months. I made no changes to the scenario, Google connection, Google account, or authorization.
Make Support confirmed that the internal_failure represented a temporary 500 error and explained that because it occurred during the initialization phase, the scenario never actually began execution.
As a result:
The scenario automatically stopped/disabled.
Normal error handlers could not run because execution had not started.
All subsequent requests/calls relying on that scenario also resulted in errors while the scenario was stopped.
There was no way inside the scenario to catch or retry the initialization failure.
The issue later resolved by itself. I made no changes and did not reauthorize the Google connection. The same scenario began working again, and I manually clicked Verify on the existing connection afterward and it returned Verified ✓.
I have already contacted Make Support. They confirmed that normal error handling cannot handle this because the failure occurs before execution starts.
I’m trying to determine whether anyone has found a reliable solution within Make for this type of failure.
Specifically:
- Is there any Make feature or setting that automatically retries scenarios that fail during initialization?
- Is there any way to prevent a temporary initialization error from automatically stopping/disabling the scenario?
- Is there another Make-native architecture that people are using for production-critical workflows to protect against this type of failure?
- Has Make introduced any newer functionality for recovering from or monitoring AccountValidationError / connection-verification failures?
I am considering moving some of these critical processes outside Make entirely, but I would first like to understand whether there is a reliable solution available within Make.
Error messages or input/output bundles
-
Module initialization failed with an error:
Connection couldn’t be verified
Failed to verify connection ‘My Google connection’. Unexpected error: internal_failure
Code: AccountValidationError -
Scenario initialization failed with an error:
Connection couldn’t be verified
Cannot initialize the scenario because of the reason ‘Failed to verify connection ‘My Google connection’. Unexpected error: internal_failure’
Failed to verify connection ‘My Google connection’. Unexpected error: internal_failure
Code: AccountValidationError
*Make Support confirmed that internal_failure corresponds to a temporary 500 error and that because the failure happened during initialization, normal scenario error handling cannot be triggered.
