You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by br...@apache.org on 2014/08/27 09:06:16 UTC

svn commit: r1620783 - /hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java

Author: brock
Date: Wed Aug 27 07:06:16 2014
New Revision: 1620783

URL: http://svn.apache.org/r1620783
Log:
HIVE-7885 - CLIServer.openSessionWithImpersonation logs as if it were openSession (Brock reviewed by Szehon)

Modified:
    hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java

Modified: hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java
URL: http://svn.apache.org/viewvc/hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java?rev=1620783&r1=1620782&r2=1620783&view=diff
==============================================================================
--- hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java (original)
+++ hive/trunk/service/src/java/org/apache/hive/service/cli/CLIService.java Wed Aug 27 07:06:16 2014
@@ -166,7 +166,7 @@ public class CLIService extends Composit
           throws HiveSQLException {
     SessionHandle sessionHandle = sessionManager.openSession(protocol, username, password, null, configuration,
         true, delegationToken);
-    LOG.debug(sessionHandle + ": openSession()");
+    LOG.debug(sessionHandle + ": openSessionWithImpersonation()");
     return sessionHandle;
   }