HADOOP-11440. Use "test.build.data" instead of "build.test.dir" for testing in ClientBaseWithFixes. Contributed by Kengo Seki.
This commit is contained in:
parent
b8a14efdf5
commit
18fb421fab
@ -621,6 +621,9 @@ Release 2.7.0 - UNRELEASED
|
|||||||
HADOOP-11521. Make connection timeout configurable in s3a.
|
HADOOP-11521. Make connection timeout configurable in s3a.
|
||||||
(Thomas Demoor via stevel)
|
(Thomas Demoor via stevel)
|
||||||
|
|
||||||
|
HADOOP-11440. Use "test.build.data" instead of "build.test.dir" for testing
|
||||||
|
in ClientBaseWithFixes. (Kengo Seki via aajisaka)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-11323. WritableComparator#compare keeps reference to byte array.
|
HADOOP-11323. WritableComparator#compare keeps reference to byte array.
|
||||||
|
@ -66,7 +66,7 @@ public abstract class ClientBaseWithFixes extends ZKTestCase {
|
|||||||
|
|
||||||
public static int CONNECTION_TIMEOUT = 30000;
|
public static int CONNECTION_TIMEOUT = 30000;
|
||||||
static final File BASETEST =
|
static final File BASETEST =
|
||||||
new File(System.getProperty("build.test.dir", "build"));
|
new File(System.getProperty("test.build.data", "build"));
|
||||||
|
|
||||||
protected final String hostPort = initHostPort();
|
protected final String hostPort = initHostPort();
|
||||||
protected int maxCnxns = 0;
|
protected int maxCnxns = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user