This is an automated email from the ASF dual-hosted git repository.

zihaoxiang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new dc42bd58c5 [Improvement-17647][Resource Center] Disable the timeout 
limit in the frontend logic when upload file. (#17648)
dc42bd58c5 is described below

commit dc42bd58c5a1214bbda056f4b5280c6fe6e41af0
Author: njnu-seafish <[email protected]>
AuthorDate: Thu Nov 6 17:06:05 2025 +0800

    [Improvement-17647][Resource Center] Disable the timeout limit in the 
frontend logic when upload file. (#17648)
---
 dolphinscheduler-ui/src/service/modules/resources/index.ts | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/dolphinscheduler-ui/src/service/modules/resources/index.ts 
b/dolphinscheduler-ui/src/service/modules/resources/index.ts
index 19896441ab..49614b4676 100644
--- a/dolphinscheduler-ui/src/service/modules/resources/index.ts
+++ b/dolphinscheduler-ui/src/service/modules/resources/index.ts
@@ -85,7 +85,8 @@ export function onlineCreateResource(
   return axios({
     url: '/resources/online-create',
     method: 'post',
-    data
+    data,
+    timeout: 0
   })
 }
 
@@ -105,7 +106,8 @@ export function updateResource(
   return axios({
     url: '/resources',
     method: 'put',
-    data
+    data,
+    timeout: 0
   })
 }
 
@@ -127,7 +129,8 @@ export function updateResourceContent(
   return axios({
     url: '/resources/update-content',
     method: 'put',
-    data
+    data,
+    timeout: 0
   })
 }
 
@@ -137,6 +140,7 @@ export function viewResource(
   return axios({
     url: '/resources/view',
     method: 'get',
-    params
+    params,
+    timeout: 0
   })
 }

Reply via email to