Browse Source

Merge pull request #2756 from break60/dev-1.3.0

Fix rename check parameter
pull/3/MERGE
xingchun-chen 4 years ago committed by GitHub
parent
commit
f03dc47b5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      dolphinscheduler-server/src/main/resources/config/install_config.conf
  2. 2
      dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/file/pages/list/_source/rename.vue
  3. 2
      dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/resource/_source/rename.vue

1
dolphinscheduler-server/src/main/resources/config/install_config.conf

@ -67,7 +67,6 @@ mailPassword="xxxxxxxxxx"
starttlsEnable="true"
# SSL mail protocol support
# note: The SSL protocol is enabled by default.
# only one of TLS and SSL can be in the true state.
sslEnable="false"

2
dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/file/pages/list/_source/rename.vue

@ -71,7 +71,7 @@
})
}else{
return this.store.dispatch('resource/resourceVerifyName', {
fullName: localStore.getItem('currentDir')+'/'+this.name,
fullName: '/'+this.name,
type: 'FILE'
})
}

2
dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/resource/_source/rename.vue

@ -72,7 +72,7 @@
})
}else{
return this.store.dispatch('resource/resourceVerifyName', {
fullName: localStore.getItem('currentDir')+'/'+this.name,
fullName: '/'+this.name,
type: 'UDF'
})
}

Loading…
Cancel
Save