Hi everyone,
I have an automation that runs a script which sends a recordID to a Make webhook.
Every now and then the automation fails because Airtable sets the script execution limit to 30 seconds. That makes me think that the problem is because of Make, in that the processing in Make takes longer so in return Airtable exceeds the execution time.
Has anyone else experienced this issue? Is there a way for us to resolve this or perhaps a workaround?
Here's my simple script:
let inputConfig = input.config();
let webhook = 'https://hook.us1.make.com/jflrewqrewmnmnnqsdfsqsgtewvs'
let queryParams = `/?record=${inputConfig.record}`
fetch(`${webhook}${queryParams}`);

