You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by to...@apache.org on 2011/03/26 21:38:07 UTC

svn commit: r1085797 - in /hbase/branches/0.90: CHANGES.txt bin/hbase-config.sh

Author: todd
Date: Sat Mar 26 20:38:07 2011
New Revision: 1085797

URL: http://svn.apache.org/viewvc?rev=1085797&view=rev
Log:
HBASE-3703. hbase-config.sh needs to be updated so it can auto-detect the sun jdk provided by RHEL6

Modified:
    hbase/branches/0.90/CHANGES.txt
    hbase/branches/0.90/bin/hbase-config.sh

Modified: hbase/branches/0.90/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1085797&r1=1085796&r2=1085797&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Sat Mar 26 20:38:07 2011
@@ -86,6 +86,8 @@ Release 0.90.2 - Unreleased
    HBASE-3683  NMapInputFormat should use a different config param for number of maps
    HBASE-3658  Alert when heap is over committed (Subbu M Iyer via Stack)
    HBASE-3681  Check the sloppiness of the region load before balancing (Ted Yu via JD)
+   HBASE-3703  hbase-config.sh needs to be updated so it can auto-detect
+               the sun jdk provided by RHEL6 (Bruno Mahe via todd)
 
 
 Release 0.90.1 - February 9th, 2011

Modified: hbase/branches/0.90/bin/hbase-config.sh
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/bin/hbase-config.sh?rev=1085797&r1=1085796&r2=1085797&view=diff
==============================================================================
--- hbase/branches/0.90/bin/hbase-config.sh (original)
+++ hbase/branches/0.90/bin/hbase-config.sh Sat Mar 26 20:38:07 2011
@@ -84,6 +84,7 @@ fi
 if [ -z "$JAVA_HOME" ]; then
   for candidate in \
     /usr/lib/jvm/java-6-sun \
+    /usr/lib/jvm/java-1.6.0-sun-1.6.0.* \
     /usr/lib/j2sdk1.6-sun \
     /usr/java/jdk1.6* \
     /usr/java/jre1.6* \