From 71c0306587b1a57de2fe830dcbc48d1007ae517b Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Sat, 1 Jun 2024 15:11:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=87=E4=BB=B6=E5=88=87=E7=89=87?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E8=B6=85=E6=97=B6=E6=97=B6=E9=97=B4=E7=BB=9F?= =?UTF-8?q?=E4=B8=8060s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/tool/file.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/api/tool/file.ts b/src/api/tool/file.ts index a50d1cee..928be1be 100644 --- a/src/api/tool/file.ts +++ b/src/api/tool/file.ts @@ -171,6 +171,7 @@ export function chunkCheck(identifier: string, fileName: string) { url: '/file/chunkCheck', method: 'post', data: { identifier, fileName }, + timeout: 60_000, }); } @@ -190,6 +191,7 @@ export function chunkMerge( url: '/file/chunkMerge', method: 'post', data: { identifier, fileName, subPath }, + timeout: 60_000, }); } @@ -217,6 +219,7 @@ export function transferStaticFile(data: Record) { url: `/file/transferStaticFile`, method: 'post', data, + timeout: 60_000, }); }