HADOOP-10072. Merging change r1535918 from trunk to branch-2.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1535919 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2301e3a163
commit
abddbcd9bf
|
@ -161,6 +161,9 @@ Release 2.2.1 - UNRELEASED
|
||||||
HADOOP-10055. FileSystemShell.apt.vm doc has typo "numRepicas".
|
HADOOP-10055. FileSystemShell.apt.vm doc has typo "numRepicas".
|
||||||
(Akira Ajisaka via cnauroth)
|
(Akira Ajisaka via cnauroth)
|
||||||
|
|
||||||
|
HADOOP-10072. TestNfsExports#testMultiMatchers fails due to non-deterministic
|
||||||
|
timing around cache expiry check. (cnauroth)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -35,6 +35,7 @@ public class TestNfsExports {
|
||||||
Nfs3Constant.EXPORTS_CACHE_EXPIRYTIME_MILLIS_DEFAULT * 1000 * 1000;
|
Nfs3Constant.EXPORTS_CACHE_EXPIRYTIME_MILLIS_DEFAULT * 1000 * 1000;
|
||||||
|
|
||||||
private static final int CacheSize = Nfs3Constant.EXPORTS_CACHE_SIZE_DEFAULT;
|
private static final int CacheSize = Nfs3Constant.EXPORTS_CACHE_SIZE_DEFAULT;
|
||||||
|
private static final long NanosPerMillis = 1000000;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testWildcardRW() {
|
public void testWildcardRW() {
|
||||||
|
@ -185,7 +186,15 @@ public class TestNfsExports {
|
||||||
|
|
||||||
Thread.sleep(1000);
|
Thread.sleep(1000);
|
||||||
// no cache for address2 now
|
// no cache for address2 now
|
||||||
Assert.assertEquals(AccessPrivilege.NONE,
|
AccessPrivilege ap;
|
||||||
matcher.getAccessPrivilege(address2, address2));
|
long startNanos = System.nanoTime();
|
||||||
|
do {
|
||||||
|
ap = matcher.getAccessPrivilege(address2, address2);
|
||||||
|
if (ap == AccessPrivilege.NONE) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
Thread.sleep(500);
|
||||||
|
} while ((System.nanoTime() - startNanos) / NanosPerMillis < 5000);
|
||||||
|
Assert.assertEquals(AccessPrivilege.NONE, ap);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue