perf: 修改文件上传超时时间

This commit is contained in:
wangruidong 2023-12-25 16:55:55 +08:00 committed by w940853815
parent 111aafb4bb
commit 51a4c013d3

View File

@ -58,7 +58,7 @@ export function JobUploadFile(form) {
url: '/api/v1/ops/jobs/upload/',
method: 'post',
headers: { 'Content-Type': 'multipart/form-data' },
timeout: 10 * 60 * 1000,
timeout: 60 * 60 * 1000,
data: form
})
}