Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[Bug] useFetch with no cache policy caches on 500+ #292

Open
jakelheknight opened this issue Sep 29, 2020 · 2 comments
Open

[Bug] useFetch with no cache policy caches on 500+ #292

jakelheknight opened this issue Sep 29, 2020 · 2 comments

Comments

@jakelheknight
Copy link

    const { loading, get } = useFetch(
        `${apiGateWayEndpoint}/api/v1/schdule`,
        {
            headers: {
                'Content-Type': 'application/json',
            },
            redirect: 'follow',
            cachePolicy: CachePolicies.NO_CACHE,
        }
    );

   getData = async (id) => {
     get(`?id=${id}`);
  }

Is caching somehow and returning the previous ID's data on a 500+ error.

@iamthesiz
Copy link
Collaborator

iamthesiz commented Sep 29, 2020

Could you make a codesandbox reproducing the bug please?

@igor-krupa
Copy link

I think it's hard to prepare codesandbox for this but I do confirm that issue.
The thing is you would have to prepare an API that will give the response on first time but will fail with the same request next time.

So if cachePolicy is set to default and you make a success response, and next time you change policy to no-cache AND make response failed, even then data is returning value from the previous cached request.

I think a workaround for @jakelheknight would be to add some query params to URL.
But still, this is a bug in my opinion because no-cache should not return data from the previous responses. Now it returns even of new request is not made or failed

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants