Closed adviri closed 4 months ago
Hello,
I have noticed that the NetworkRetryErrors list in lib/HttpClient.ts.js does not include EHOSTUNREACH.
NetworkRetryErrors
EHOSTUNREACH
const NetworkRetryErrors: string[] = ['ECONNRESET', 'ENOTFOUND', 'ESOCKETTIMEDOUT', 'ETIMEDOUT', 'ECONNREFUSED'];
I happened to encounter EHOSTUNREACH errors due to temporary network issues. I believe it would be beneficial to include EHOSTUNREACH in the NetworkRetryErrors list so that requests encountering this error can be retried.
Thank you for your time :)
Done, thanks for the suggestion.
Hello,
I have noticed that the
NetworkRetryErrors
list in lib/HttpClient.ts.js does not includeEHOSTUNREACH
.I happened to encounter
EHOSTUNREACH
errors due to temporary network issues. I believe it would be beneficial to includeEHOSTUNREACH
in theNetworkRetryErrors
list so that requests encountering this error can be retried.Thank you for your time :)