Skip to content

Commit

Permalink
[apache#6450] fix(web): fix authentication.type issue (apache#6452)
Browse files Browse the repository at this point in the history
### 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: apache#6450

### Does this PR introduce _any_ user-facing change?
N/A

### How was this patch tested?
manually
  • Loading branch information
LauraXia123 authored and youngyjd committed Feb 14, 2025
1 parent 5b03f5f commit 12857cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 12857cc

Please sign in to comment.