Are you using our SaaS platform (Baserow.io) or self-hosting Baserow?
SaaS
What are the exact steps to reproduce this issue?
I’ve updated a table via the baserow.io web UI, but when my python script runs, it is fetching stale data from before the updates.
I’ve even added a bogus column and put data into that, but the new column and data are not returned.
The fetch request is simple, just referencing the table and a defined view, and it returns data, but just not the current data. Seems like a caching issue on the back end, perhaps? It’s quite frustrating.
Hi @AlexS, there is no cache on the API and the frontend shares the same endpoints so if you make a change in the web ui, it should immediately be reflected by the API. There, it is more likely that the cache is happening from your python script. Could you share the code of the script at all?