Return-Path: X-Original-To: apmail-hive-commits-archive@www.apache.org Delivered-To: apmail-hive-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 92ABB9113 for ; Mon, 30 Jan 2012 04:15:28 +0000 (UTC) Received: (qmail 34766 invoked by uid 500); 30 Jan 2012 04:15:27 -0000 Delivered-To: apmail-hive-commits-archive@hive.apache.org Received: (qmail 34128 invoked by uid 500); 30 Jan 2012 04:15:17 -0000 Mailing-List: contact commits-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hive-dev@hive.apache.org Delivered-To: mailing list commits@hive.apache.org Received: (qmail 34113 invoked by uid 99); 30 Jan 2012 04:15:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jan 2012 04:15:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jan 2012 04:15:03 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 21EB42388860 for ; Mon, 30 Jan 2012 04:14:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1237539 - /hive/trunk/hwi/src/java/org/apache/hadoop/hive/hwi/HWIServer.java Date: Mon, 30 Jan 2012 04:14:42 -0000 To: commits@hive.apache.org From: hashutosh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120130041442.21EB42388860@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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); }