Hello,
I have noticed that the NetworkRetryErrors list in lib/HttpClient.ts.js does not include 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 :)
Hello,
I have noticed that the
NetworkRetryErrorslist in lib/HttpClient.ts.js does not includeEHOSTUNREACH.I happened to encounter
EHOSTUNREACHerrors due to temporary network issues. I believe it would be beneficial to includeEHOSTUNREACHin theNetworkRetryErrorslist so that requests encountering this error can be retried.Thank you for your time :)