HADOOP-11440. Use "test.build.data" instead of "build.test.dir" for testing in ClientBaseWithFixes. Contributed by Kengo Seki.
(cherry picked from commit 18fb421fab
)
This commit is contained in:
parent
fef5efa0cb
commit
10da1bfce2
|
@ -207,6 +207,9 @@ Release 2.7.0 - UNRELEASED
|
|||
HADOOP-11521. Make connection timeout configurable in s3a.
|
||||
(Thomas Demoor via stevel)
|
||||
|
||||
HADOOP-11440. Use "test.build.data" instead of "build.test.dir" for testing
|
||||
in ClientBaseWithFixes. (Kengo Seki via aajisaka)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
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;
|
||||
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 int maxCnxns = 0;
|
||||
|
|
Loading…
Reference in New Issue