This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new 74435c9b83 [#6450] fix(web): fix authentication.type issue (#6452)
74435c9b83 is described below
commit 74435c9b83b382daf0dc4753a2af9fe7af1c89a7
Author: Qian Xia <[email protected]>
AuthorDate: Fri Feb 14 17:33:25 2025 +0800
[#6450] fix(web): fix authentication.type issue (#6452)
### What changes were proposed in this pull request?
authentication.type of catalog property should send correct request to
server
### Why are the changes needed?
N/A
Fix: #6450
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
manually
---
web/web/src/app/metalakes/metalake/rightContent/CreateCatalogDialog.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/web/web/src/app/metalakes/metalake/rightContent/CreateCatalogDialog.js
b/web/web/src/app/metalakes/metalake/rightContent/CreateCatalogDialog.js
index 6f0cf70edf..b44ba22bc7 100644
--- a/web/web/src/app/metalakes/metalake/rightContent/CreateCatalogDialog.js
+++ b/web/web/src/app/metalakes/metalake/rightContent/CreateCatalogDialog.js
@@ -306,7 +306,7 @@ const CreateCatalogDialog = props => {
jdbcUser && (properties['jdbc-user'] = jdbcUser)
jdbcPwd && (properties['jdbc-password'] = jdbcPwd)
}
- authType && (properties['authType'] = authType)
+ authType && (properties['authentication.type'] = authType)
kerberosPrincipal && (properties['authentication.kerberos.principal']
= kerberosPrincipal)
kerberosKeytabUri && (properties['authentication.kerberos.keytab-uri']
= kerberosKeytabUri)