We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7de8a0d commit 5d23399Copy full SHA for 5d23399
src/error.ts
@@ -18,7 +18,7 @@ export function isFailoverableError(error: any): boolean {
18
return false;
19
}
20
// ENOTFOUND: DNS lookup failed, ENOENT: no such file or directory
21
- if (error.code == "ENOTFOUND" || error.code === "ENOENT"){
+ if (error.code == "ENOTFOUND" || error.code === "ENOENT") {
22
return true;
23
24
// 401 Unauthorized, 403 Forbidden, 408 Request Timeout, 429 Too Many Requests, 5xx Server Errors
0 commit comments