-
-
Notifications
You must be signed in to change notification settings - Fork 115
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
Race condition on mounting multiple components with requests #177
Comments
You are seriously amazing for helping bullet proof this! ❤️ Again, I will get on this as soon as possible. |
I tested the exact same code you have in the codesandbox at least 20 times on my local machine and was not able to reproduce the bug. I'll try some more, but it's possible this is an issue with codesandbox. |
Update: I was able to reproduce. |
Aha, here's the problem. The default Now, when we switch the count to 50, since the request is the same for them all, and Current workarounds until I get a fix for this are.
function Thing() {
const { loading, error, data } = useFetch(`https://httpbin.org/post`, {
cachePolicy: 'no-cache',
headers: {
Accept: "application/json",
"Content-Type": "application/json"
},
method: "POST",
body: JSON.stringify({ width: 100 })
}, [])
return <div>Loading: {String(loading)}</div>
}
function Thing({ i }) {
const { loading, error, data } = useFetch(`https://httpbin.org/post`, {
headers: {
Accept: "application/json",
"Content-Type": "application/json"
},
method: "POST",
body: JSON.stringify({ width: i }) // where this would be an ID of whatever item this is
}, [])
console.log(`loading ${i}: `, loading)
return <div style={{ fontSize: 12 }}>Loading: {i} {String(loading)}</div>
}
const BugRaceCondition = () => {
const [more, setMore] = useState(false);
useTimeout(() => setMore(true), 1000)
return (
<Provider url='https://httpbin.org/delay/3'>
<div className="App">
<h1>Hello CodeSandbox</h1>
<h2>Start editing to see some magic happen!</h2>
{Array.from({ length: more ? 50 : 4 }, (x, i) => <Thing key={i} i={i} />)}
</div>
</Provider>
)
} |
It is worth noting in my real application they are all different post requests (same endpoint, different body). At least they should be 🤔. They should be GETs but that's an open issue with the API writer. For now I ended up making my own lightweight useFetch. For what it is worth, all these requests are for sparklines in an infinite scroller. So when you scroll quickly random sparklines never finish loading. |
Double check they are different bodies. The way the cache works is we save the key as Since the key includes the body, if the bodies are different for each request, it should work. I will look into this some more asap. |
I'm currently juggling some unrelated work, so it might be a bit before I get around to checking on the bodies. |
Describe the bug
Race condition causes some requests to never be sent and thus are loading forever
https://codesandbox.io/s/falling-shape-3gcsu
What I see, since this is a race condition and doesn't always trigger but does quite often for me.

To Reproduce
Steps to reproduce the behavior:
Expected behavior
All requests should complete successfully.
The text was updated successfully, but these errors were encountered: