fix: axios retry losing headers (#3902)
This commit is contained in:
parent
cca7f59fac
commit
8d3981f599
|
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue