(res)
| 233 | } |
| 234 | |
| 235 | _httpOrNetworkError(res) { |
| 236 | const networkErrors = ['ECONNRESET', 'ENOTFOUND', 'ESOCKETTIMEDOUT', 'ETIMEDOUT', 'ECONNREFUSED', 'EHOSTUNREACH', 'EPIPE', 'EAI_AGAIN', 'EBUSY']; |
| 237 | return networkErrors.includes(res) || 500 <= res.status && res.status < 600; |
| 238 | } |
| 239 | |
| 240 | _post(batch, bytes) { |
| 241 | let attempts = 0; |