-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ensure upserted cache entries always get written #4768
Conversation
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
✅ Deploy Preview for redux-starter-kit-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit e101ec6:
|
size-limit report 📦
|
0ef009e
to
e101ec6
Compare
@markerikson it's been a while since you fixed this without a new version being released since then - would it be possible to craft a release that includes this? That would be great! |
Ah, yeah, this didn't get released. I'll try to find time to put out a new build. |
Great, thank you for the release @markerikson ! |
Oh yeah, forgot to comment back here :) Out in https://github.com/reduxjs/redux-toolkit/releases/tag/v2.5.1 ! |
This PR:
upsertQueryEntries
where updates to an existing cache entry would not actually get completed, leaving the entry in an incorrectpending
state indefinitelyFixes #4749
Investigation
Made a Replay that shows the repro in action:
Looks like there was a small flaw in the logic. We already had a check for the
fulfilled
case that bails out of writing the result ifsubstate.requestId !== meta.requestId
, so that we don't end up with conflicting request results being written. However, it also had a check for the older forced upsert logic as well, and it wasn't accounting for this newer approach.Meanwhile, the
pending
logic actually keeps around the existing request ID:So, what was happening was roughly:
fulfilled
action for ID 2 is written, with its request IDupsertQueryEntries
for ID 2 is dispatchedpending
write logic for the upsert sees there's an existing entry, and keeps the old request ID from the actual API response, instead of overwriting it with the fake request ID from the upsertfulfilled
write logic for the upsert tries to update the entry... but the existing and incoming request IDs don't match, and it wasn't being detected as a forced upsert because that logic only was checking for the olderupsertQueryData
approachand so we're left with the existing entry, updated to be in a
pending
state, and without the upserted data written and marked as fulfilled.