Author: hairong
Date: Wed Dec 23 21:03:51 2009
New Revision: 893629
URL: http://svn.apache.org/viewvc?rev=893629&view=rev
Log:
HDFS-849. TestFiDataTransferProtocol2#pipeline_Fi_18 sometimes fails.
Contributed by Hairong Kuang.
Modified:
hadoop/hdfs/trunk/CHANGES.txt
hadoop/hdfs/trunk/src/test/aop/org/apache/hadoop/fi/FiTestUtil.java
Modified: hadoop/hdfs/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/hdfs/trunk/CHANGES.txt?rev=893629&r1=893628&r2=893629&view=diff
==============================================================================
--- hadoop/hdfs/trunk/CHANGES.txt (original)
+++ hadoop/hdfs/trunk/CHANGES.txt Wed Dec 23 21:03:51 2009
@@ -581,6 +581,9 @@
HDFS-564. Adding pipeline tests 17-35. (hairong)
+ HDFS-849. TestFiDataTransferProtocol2#pipeline_Fi_18 sometimes fails.
+ (hairong)
+
Release 0.20.2 - Unreleased
IMPROVEMENTS
Modified: hadoop/hdfs/trunk/src/test/aop/org/apache/hadoop/fi/FiTestUtil.java
URL:
http://svn.apache.org/viewvc/hadoop/hdfs/trunk/src/test/aop/org/apache/hadoop/fi/FiTestUtil.java?rev=893629&r1=893628&r2=893629&view=diff
==============================================================================
--- hadoop/hdfs/trunk/src/test/aop/org/apache/hadoop/fi/FiTestUtil.java
(original)
+++ hadoop/hdfs/trunk/src/test/aop/org/apache/hadoop/fi/FiTestUtil.java Wed Dec
23 21:03:51 2009
@@ -124,21 +124,21 @@
public boolean isSatisfied();
}
- /** Counting down, the constraint is satisfied if the count is zero. */
+ /** Counting down, the constraint is satisfied if the count is one. */
public static class CountdownConstraint implements Constraint {
private int count;
/** Initialize the count. */
public CountdownConstraint(int count) {
- if (count < 0) {
- throw new IllegalArgumentException(count + " = count < 0");
+ if (count < 1) {
+ throw new IllegalArgumentException(count + " = count < 1");
}
this.count = count;
}
/** Counting down, the constraint is satisfied if the count is zero. */
public boolean isSatisfied() {
- if (count > 0) {
+ if (count > 1) {
count--;
return false;
}