Help

Re: Error: network timeout on update

Solved
Jump to Solution
399 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Max
4 - Data Explorer
4 - Data Explorer

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”

1 Solution

Accepted Solutions
Chris_Parker
6 - Interface Innovator
6 - Interface Innovator

I learned one thing from support helped and it was to specifically not include the fields in selectRecordsAsync.

let allRecords = await table.selectRecordsAsync({fields: []});

See Solution in Thread

4 Replies 4
Chris_Parker
6 - Interface Innovator
6 - Interface Innovator

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.

Max
4 - Data Explorer
4 - Data Explorer

It is problematic, i’m flooded by errors even if it works…

Chris_Parker
6 - Interface Innovator
6 - Interface Innovator

I learned one thing from support helped and it was to specifically not include the fields in selectRecordsAsync.

let allRecords = await table.selectRecordsAsync({fields: []});

Thank you Chris for the ping.