busy-window-96391
07/02/2026, 3:17 PM"dateUpdated": "2026-06-30T16:06:59.273Z"
We’re using the GrowthBook Proxy, but we also tried connecting directly to GrowthBook and got the same result.
This seems very critical for us.busy-window-96391
07/02/2026, 3:29 PMpowerful-spoon-16837
07/02/2026, 5:09 PMdateUpdated stays frozen - the SDK only ever sees the last published state. Worth double-checking you're editing the same environment/project your SDK key points to too.
Easiest way to confirm - hit the endpoint directly (no SDK), publish a change, hit it again, and see if dateUpdated moves:
curl -s "https://<your-host>/api/features/<your-sdk-key>"
If it doesn't budge even right after publishing, the stale data is coming from the server side, not the app.
If publishing isn't it, drop us:
• your`GBSDKBuilderApp(...)`init code
• the`growthbook_sdk_flutter`version
• and whether you're using *remote eval*(heads up: a remote-eval connection returns 400 on the normal`GET /api/features/<key>`)busy-window-96391
07/02/2026, 6:12 PMgrowthbook_sdk_flutter we have our own implementation using remote evaluation. However, we reproduced the issue with a simple HTTP request as well, so the SDK isn’t involved.calm-dog-24239
07/02/2026, 6:15 PMbusy-window-96391
07/03/2026, 9:27 AMcalm-dog-24239
07/03/2026, 2:41 PMdateUpdated indicates a stale cached payload.
Two things to check:
1. Proxy cache – It should be invalidated via a webhook on publish. Could you check the Proxy webhook delivery/logs and clear its cache?
(CACHE_STALE_TTL / CACHE_EXPIRES_TTL)
2. Endpoint/key – You mentioned using remote evaluation, but you're calling GET /api/features/sdk-… and receiving a 200 response. A remote evaluation connection uses POST /api/eval/<key>, and that GET request should return 400. This suggests that the sdk-… key might point to a different SDK Connection than the one you're publishing to. Could you send the exact request URL along with a screenshot of the SDK Connection settings (remote evaluation enabled, environment, and project)?
There is no silent payload size limit, and ~260 KB is well within the supported range, so that's not the cause.busy-window-96391
07/06/2026, 7:14 AM