提交 905837d7 编写于 作者: VK1688's avatar VK1688

1

上级 2ff0d563
......@@ -650,11 +650,13 @@ class CallFunctionUtil {
fail,
} = params;
// 只有是系统异常时才进行重试
if (params.needRetry && sysFail) {
if (!obj.hookResult || (typeof obj.hookResult === "function" && !obj.hookResult(err))) {
Logger.sysFail = true;
if (typeof params.retry == "function") params.retry(res, params);
return false;
if(params.needRetry){
if (sysFail || (res.code && [90001].indexOf(res.code) > -1)) {
if (!obj.hookResult || (typeof obj.hookResult === "function" && !obj.hookResult(err))) {
Logger.sysFail = true;
if (typeof params.retry == "function") params.retry(res, params);
return false;
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册