You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2012/01/30 05:14:42 UTC

svn commit: r1237539 - /hive/trunk/hwi/src/java/org/apache/hadoop/hive/hwi/HWIServer.java

Author: hashutosh
Date: Mon Jan 30 04:14:41 2012
New Revision: 1237539

URL: http://svn.apache.org/viewvc?rev=1237539&view=rev
Log:
HIVE_2645: Hive Web Server startup messages logs incorrect path it is searching for WAR (Edward Capriolo via Ashutosh Chauhan)

Modified:
    hive/trunk/hwi/src/java/org/apache/hadoop/hive/hwi/HWIServer.java

Modified: hive/trunk/hwi/src/java/org/apache/hadoop/hive/hwi/HWIServer.java
URL: http://svn.apache.org/viewvc/hive/trunk/hwi/src/java/org/apache/hadoop/hive/hwi/HWIServer.java?rev=1237539&r1=1237538&r2=1237539&view=diff
==============================================================================
--- hive/trunk/hwi/src/java/org/apache/hadoop/hive/hwi/HWIServer.java (original)
+++ hive/trunk/hwi/src/java/org/apache/hadoop/hive/hwi/HWIServer.java Mon Jan 30 04:14:41 2012
@@ -78,7 +78,7 @@ public class HWIServer {
     String hivehome = System.getenv().get("HIVE_HOME");
     File hwiWARFile = new File(hivehome, hwiWAR);
     if (!hwiWARFile.exists()) {
-      l4j.fatal("HWI WAR file not found at " + hwiWAR);
+      l4j.fatal("HWI WAR file not found at " + hwiWARFile.toString());
       System.exit(1);
     }