-
-
Notifications
You must be signed in to change notification settings - Fork 366
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
Best way to handle Fetch errors such as Failed to fetch, NetworkError when attempting to fetch resource, etc. #545
Comments
import ky from 'ky';
const response = await ky('https://example.com', {
hooks: {
beforeRetry: [
async ({error}) => {
if (!isNetworkError(error)) {
throw error;
}
}
]
},
retry: {
limit: 2, // Number of retry attempts
methods: ['get'], // Methods to retry
statusCodes: [0] // Include network errors (status code 0)
}
}); However, I think it would be useful if Ky had a import ky from 'ky';
const response = await ky('https://example.com', {
retry: {
shouldRetry: ({error}) => isNetworkError(error)
}
});
|
I think we should wrap fetch errors in a We could potentially also update our retry logic to only retry However, that does mean that if a new runtime comes along with a different error message unknown to An alternative approach would be to detect errors that shouldn't be retried, such as type errors caused by malformed options, and then retry everything else. It just depends on whether you want to err on the side of retries or not, when the error message is unknown. I would prefer retries, myself. |
👍
That sounds like the most pragmatic solution.
Unfortunate yes, but the benefits may outweigh this single downside. New runtimes don't come along every day. |
wondering if just setting this obj would retry on failed to fetch errors too (plus default behavior): retry: {
limit: 2,
statusCodes: [0, 408, 413, 429, 500, 502, 503, 504],
}, I'm assuming that adding |
@gvillo you shouldn't need that. We currently retry all fetch errors, whether they are network errors or not, unless a response is received with a status code/headers that tell us not to. What behavior are you seeing exactly? |
Basically trying to understand if I have to use is-network-error with ky to stop getting failed to fetch errors, because the readme doesn't say anything avoid it. Sounds great if it retries network errors by default. I'll remove that custom retry config and see how it performs! Many thanks! |
Are you trying to make a cross-origin request? IIRC, some browsers say "Failed to fetch" for CORS errors. |
ohh! no no, there is no CORS issue at all. I had no issue at all, I was just asking before implementing Ky, because on the docs there is no mention that the library is retrying on network errors |
Unfortunately, your code is written with (very understandable) false assumptions about JavaScript. 😀 const error = new Error('Something is wrong');
console.log(JSON.stringify(error)); // => "{}" You cannot serialize errors like that because they have no enumerable properties. Personally, I think this ought to be changed as it's a common footgun, but the Node.js/browser teams would probably say it's too late to change. I would recommend using |
cool thank you @sholladay!, it's a |
We have these errors happening only occasionally and I'm not able to reproduce these errors.
Is it possible to retry only when errors are network errors: https://github.com/sindresorhus/is-network-error/blob/main/index.js ?
Does anyone know what causes these errors? Is it normal to explicitly catch and handle these specific errors or is it more likely a problem on my app or server? The server is just a Hetzner VPS with very basic configuration, I can't imagine it being that with the popularity that Hetzner has; as to the app, it only happens very occasionally, the same request will succeed after any subsequent attempt.
The text was updated successfully, but these errors were encountered: