We’ve got several automations running that hit API’s and update records.
Often times they run fine. Other times, they fail with this error:
ERROR
Error: Isolate is disposed
on line 1
Line one is updateArray.
This is the array:
let updateObject = {};
updateObjectj“id”] = record.id;
updateObjectt“fields”] = {};
updateObjectu“fields”]c“price”] = Number(data.market_data.current_price.usd);
updateObject>“fields”]d“price_ATH”] = Number(data.market_data.ath.usd);
updateObjectu“fields”]b“date_ATH”] = String(data.market_data.ath_date.usd);
updateObjectt“fields”]d“price_date”] = new Date();
updateArray.push(updateObject);
What does the error mean??