Nov 09, 2020 04:34 AM
Hello everyone,
I’ve got this error Error: network timeout at: https://api.airtable.com/v2/bases/appOZnMxRdfPA9ddR/tables/tbledHinNmtQRT4lb/records/update
But this weird thing is that the update works. But still, i have this error.
tableSociete.updateRecordsAsync([{
id: societe.id,
fields: {
"refreshtoken": responseJson.refresh_token,
"accesstoken": responseJson.access_token
},
}])
The other weird thing is that i dont have the error everytime but just with some “societe.id”
Solved! Go to Solution.
Nov 16, 2020 01:42 PM
I learned one thing from support helped and it was to specifically not include the fields in selectRecordsAsync
.
let allRecords = await table.selectRecordsAsync({fields: []});
Nov 10, 2020 01:44 PM
This is happening to me as well. It’s a performance issue in their Automation platform. I was going to come here to ask if it is possible to throttle the throughput. I’d rather have an automation that completes reliably but is slower than one that times out constantly.
Nov 12, 2020 08:07 AM
It is problematic, i’m flooded by errors even if it works…
Nov 16, 2020 01:42 PM
I learned one thing from support helped and it was to specifically not include the fields in selectRecordsAsync
.
let allRecords = await table.selectRecordsAsync({fields: []});
Nov 17, 2020 02:06 AM
Thank you Chris for the ping.