Browse Source

[Feature][Datasource] Disabled kerberos. (#7270)

2.0.7-release
songjianet 3 years ago committed by GitHub
parent
commit
fc233f06ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-ui/src/js/conf/home/pages/datasource/pages/list/_source/createDataSource.vue

4
dolphinscheduler-ui/src/js/conf/home/pages/datasource/pages/list/_source/createDataSource.vue

@ -514,7 +514,9 @@
this.store.dispatch('datasource/getKerberosStartupState').then(res => {
this.isShowPrincipal = res
if ((value === 'HIVE' || value === 'SPARK') && this.isShowPrincipal === true) {
this.showPrincipal = false
// TODO: follow-up support for multiple kerberos
// this.showPrincipal = false
this.showPrincipal = true
} else {
this.showPrincipal = true
}

Loading…
Cancel
Save