You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by so...@apache.org on 2022/04/21 08:03:14 UTC

[dolphinscheduler] branch dev updated: [Feature][UI][V1.0.0-Beta] Modify timeout from 10s to 15s of axios (#9644)

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

songjian 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 58c7e5aa08 [Feature][UI][V1.0.0-Beta] Modify timeout from 10s to 15s of axios (#9644)
58c7e5aa08 is described below

commit 58c7e5aa08a3036c27d2a1b7ff0e85a54611adff
Author: Devosend <de...@gmail.com>
AuthorDate: Thu Apr 21 16:03:08 2022 +0800

    [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 f2156e9d0f..92b25c8921 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' })