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

jshao pushed a commit to branch branch-0.8
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/branch-0.8 by this push:
     new 44d0518808 [#6450] fix(web): fix authentication.type issue (#6456)
44d0518808 is described below

commit 44d05188082970f0bbdb0a74dba37643f3c55884
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Feb 14 19:41:07 2025 +0800

    [#6450] fix(web): fix authentication.type issue (#6456)
    
    ### 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
    
    Co-authored-by: Qian Xia <[email protected]>
---
 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)
 

Reply via email to