mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
add configure zeppelin.jdbc.auth.kerberos.proxy for kerberos auth type to disable proxy behavior
This commit is contained in:
parent
c87fa53a3a
commit
067696aaea
1 changed files with 1 additions and 1 deletions
|
|
@ -371,7 +371,7 @@ public class JDBCInterpreter extends Interpreter {
|
|||
|
||||
switch (authType) {
|
||||
case KERBEROS:
|
||||
if (user == null) {
|
||||
if (user == null || "false".equals(property.getProperty("zeppelin.jdbc.auth.kerberos.proxy.enable"))) {
|
||||
connection = getConnectionFromPool(url, user, propertyKey, properties);
|
||||
} else {
|
||||
if (url.trim().startsWith("jdbc:hive")) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue