You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by pd...@apache.org on 2021/01/05 15:08:12 UTC

[zeppelin] branch master updated: [HOTFIX] fix checkstyle

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

pdallig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new d22511e  [HOTFIX] fix checkstyle
d22511e is described below

commit d22511e6e998b22fea7e0bd7eccedead565d80e9
Author: Philipp Dallig <ph...@gmail.com>
AuthorDate: Tue Jan 5 16:06:55 2021 +0100

    [HOTFIX] fix checkstyle
---
 jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java b/jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java
index 94e3b68..2e87a2a 100644
--- a/jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java
+++ b/jdbc/src/main/java/org/apache/zeppelin/jdbc/JDBCInterpreter.java
@@ -200,7 +200,7 @@ public class JDBCInterpreter extends KerberosInterpreter {
       LOGGER.error("Unable to run kinit for zeppelin", e);
     }
     LOGGER.debug("Neither Keytab nor ticket based login. " +
-      "runKerberosLogin() returning false");
+        "runKerberosLogin() returning false");
     return false;
   }
 
@@ -521,7 +521,7 @@ public class JDBCInterpreter extends KerberosInterpreter {
         break;
       case "KERBEROS":
         LOGGER.debug("Calling createSecureConfiguration(); this will do " +
-          "loginUserFromKeytab() if required");
+            "loginUserFromKeytab() if required");
         JDBCSecurityImpl.createSecureConfiguration(getProperties(),
                 UserGroupInformation.AuthenticationMethod.KERBEROS);
         LOGGER.debug("createSecureConfiguration() returned");