fix: axios retry losing headers (#3902)

This commit is contained in:
Li Kui
2024-06-07 11:42:48 +08:00
committed by GitHub
parent cca7f59fac
commit 8d3981f599

View File

@@ -16,8 +16,6 @@ export class AxiosRetry {
return Promise.reject(error);
}
config.__retryCount += 1;
//请求返回后config的header不正确造成重试请求失败,删除返回headers采用默认headers
delete config.headers;
return this.delay(waitTime).then(() => axiosInstance(config));
}