(proxyHost: string, failedProxies: string[])
| 307 | return true; // 表示遇到404错误 |
| 308 | }; |
| 309 | |
| 310 | // 辅助函数:检查是否为超时错误 |
| 311 | const isTimeoutError = (error: any): boolean => { |
| 312 | return error.code === 'ECONNABORTED' || |
| 313 | error.message?.includes('timeout') || |
| 314 | error.message?.includes('canceled') || |
| 315 | error.message?.includes('cancelled') || |
no outgoing calls
no test coverage detected