Add market watch and match hub workflows
这个提交包含在:
@@ -25,7 +25,12 @@ function shouldRetryError(method: string, error: unknown, options: FetchRetryOpt
|
||||
}
|
||||
|
||||
if (error instanceof Error) {
|
||||
return error.name === "AbortError" || error.name === "TimeoutError" || error.message.includes("fetch");
|
||||
return (
|
||||
error.name === "AbortError" ||
|
||||
error.name === "TimeoutError" ||
|
||||
error.message.startsWith("Request timed out after ") ||
|
||||
error.message.includes("fetch")
|
||||
);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
在新工单中引用
屏蔽一个用户