From 58c7e5aa08a3036c27d2a1b7ff0e85a54611adff Mon Sep 17 00:00:00 2001 From: Devosend Date: Thu, 21 Apr 2022 16:03:08 +0800 Subject: [PATCH] [Feature][UI][V1.0.0-Beta] Modify timeout from 10s to 15s of axios (#9644) --- dolphinscheduler-ui-next/src/service/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-ui-next/src/service/service.ts b/dolphinscheduler-ui-next/src/service/service.ts index f2156e9d0..92b25c892 100644 --- a/dolphinscheduler-ui-next/src/service/service.ts +++ b/dolphinscheduler-ui-next/src/service/service.ts @@ -43,7 +43,7 @@ const baseRequestConfig: AxiosRequestConfig = { import.meta.env.MODE === 'development' ? '/dolphinscheduler' : import.meta.env.VITE_APP_PROD_WEB_URL + '/dolphinscheduler', - timeout: 10000, + timeout: 15000, transformRequest: (params) => { if (_.isPlainObject(params)) { return qs.stringify(params, { arrayFormat: 'repeat' })