Skip to content
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

Fix race condition in useUpdate.ts #8717

Closed
wants to merge 1 commit into from

Conversation

KDederichs
Copy link

Fixes #8684 by defaulting coll to [] if it's undefined.

Now before you ask me to write a test for this:
I don't know how :D

I'm not proficient enough in jest testing to do this since it seems to be related to a race condition in which react query doesn't set the initial cache entry before you try to update it, so I have no idea how to test against that.

@KDederichs
Copy link
Author

For a bit more context I think what's happening is this:

The resource I'm updating is the same I'm fetching in the Reference AutoComplete input since it's referencing another instance of the same resource.

So it's executing a getMany right after/before the update so you they run at the same time. The update seems to finish before the fetch is done so when it's calling that there's no data there yet so it seems to result in an undefined coll

@slax57
Copy link
Contributor

slax57 commented Mar 9, 2023

Superseded by #8719

@slax57 slax57 closed this Mar 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Error in useGetManyAggregate
2 participants