HBASE-1966 Apply the fix from site/ to remove the forrest dependency on java5
HBASE-1967 [Transactional] client.TestTransactions.testPutPutScan fails sometimes Temporary fix git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@834294 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9ea1470180
commit
9ae54b277b
|
@ -101,6 +101,9 @@ Release 0.21.0 - Unreleased
|
|||
not usable) if the designated regionServer dies before the
|
||||
assignment is complete (Yannis Pavlidis via Stack)
|
||||
HBASE-1962 Bulk loading script makes regions incorrectly (loadtable.rb)
|
||||
HBASE-1966 Apply the fix from site/ to remove the forrest dependency on java5
|
||||
HBASE-1967 [Transactional] client.TestTransactions.testPutPutScan fails sometimes
|
||||
Temporary fix
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1760 Cleanup TODOs in HTable
|
||||
|
|
12
build.xml
12
build.xml
|
@ -274,7 +274,7 @@
|
|||
<!-- Package -->
|
||||
<!-- ================================================================== -->
|
||||
<target name="package" depends="jar,javadoc"
|
||||
description="Build distribution; must define -Djava5.home and -Dforrest.home so can generate doc">
|
||||
description="Build distribution; must define -Dforrest.home so can generate doc">
|
||||
<echo message="Be sure to run 'docs' target before this one else package will be missing site documentation" />
|
||||
<mkdir dir="${dist.dir}"/>
|
||||
<copy todir="${dist.dir}" includeEmptyDirs="false" flatten="true">
|
||||
|
@ -383,9 +383,7 @@
|
|||
<!-- ================================================================== -->
|
||||
<target name="docs" depends="forrest.check"
|
||||
description="Generate forrest-based documentation. To use, specify -Dforrest.home=<base of Apache Forrest installation> on the command line." if="forrest.home">
|
||||
<exec dir="${docs.src}" executable="${forrest.home}/bin/forrest" failonerror="true" >
|
||||
<env key="JAVA_HOME" value="${java5.home}"/>
|
||||
</exec>
|
||||
<exec dir="${docs.src}" executable="${forrest.home}/bin/forrest" failonerror="true" />
|
||||
<copy todir="${build.docs}">
|
||||
<fileset dir="${docs.src}/build/site/" />
|
||||
</copy>
|
||||
|
@ -397,14 +395,10 @@
|
|||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="forrest.check" unless="forrest.home" depends="java5.check">
|
||||
<target name="forrest.check" unless="forrest.home">
|
||||
<fail message="'forrest.home' is not defined. Please pass -Dforrest.home=<base of Apache Forrest installation> to Ant on the command-line." />
|
||||
</target>
|
||||
|
||||
<target name="java5.check" unless="java5.home">
|
||||
<fail message="'java5.home' is not defined. Forrest requires Java 5. Please pass -Djava5.home=<base of Java 5 distribution> to Ant on the command-line." />
|
||||
</target>
|
||||
|
||||
<!-- Javadoc -->
|
||||
<target name="javadoc" description="Generate javadoc">
|
||||
<mkdir dir="${build.javadoc}"/>
|
||||
|
|
|
@ -176,6 +176,11 @@ public class TestTransactions extends HBaseClusterTestCase {
|
|||
int row2Value = 199;
|
||||
table.put(transactionState, new Put(ROW2).add(FAMILY, QUAL_A, Bytes
|
||||
.toBytes(row2Value)));
|
||||
try {
|
||||
Thread.sleep(500);
|
||||
} catch (InterruptedException ex) {
|
||||
// just ignore
|
||||
}
|
||||
|
||||
row2Value = 299;
|
||||
table.put(transactionState, new Put(ROW2).add(FAMILY, QUAL_A, Bytes
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
# This set of properties determine if validation is performed
|
||||
# Values are inherited unless overridden.
|
||||
# e.g. if forrest.validate=false then all others are false unless set to true.
|
||||
#forrest.validate=true
|
||||
forrest.validate=false
|
||||
#forrest.validate.xdocs=${forrest.validate}
|
||||
#forrest.validate.skinconf=${forrest.validate}
|
||||
#forrest.validate.sitemap=${forrest.validate}
|
||||
|
|
Loading…
Reference in New Issue