mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Update JDBCInterpreter.java
change equals to equalsIgnoreCase
This commit is contained in:
parent
ea11ce4168
commit
444b6ab78b
1 changed files with 1 additions and 1 deletions
|
|
@ -372,7 +372,7 @@ public class JDBCInterpreter extends Interpreter {
|
|||
switch (authType) {
|
||||
case KERBEROS:
|
||||
if (user == null ||
|
||||
"false".equals(property.getProperty("zeppelin.jdbc.auth.kerberos.proxy.enable"))) {
|
||||
"false".equalsIgnoreCase(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