PAMapp/node_modules/axios-retry/lib/esm/index.js
@@ -58,7 +58,7 @@ } /** * @param {Error} error * @return {boolean | Promise} * @return {boolean} */ export function isNetworkOrIdempotentRequestError(error) { @@ -199,8 +199,9 @@ if (typeof shouldRetryOrPromise === 'object') { try { yield shouldRetryOrPromise; return true; var shouldRetryPromiseResult = yield shouldRetryOrPromise; // keep return true unless shouldRetryPromiseResult return false for compatibility return shouldRetryPromiseResult !== false; } catch (_err) { return false; }