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

dependabot/maven/org.springframework-spring-core-5.3.19
Devosend 2022-04-21 16:03:08 +08:00 committed by GitHub
parent 6966a70acc
commit 58c7e5aa08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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' })