diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index 9b65d1ec542..7f38e515eff 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -265,6 +265,8 @@ Release 2.0.3-alpha - Unreleased HDFS-3682. MiniDFSCluster#init should provide more info when it fails. (todd via eli) + HDFS-4008. TestBalancerWithEncryptedTransfer needs a timeout. (eli) + OPTIMIZATIONS BUG FIXES diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/balancer/TestBalancerWithEncryptedTransfer.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/balancer/TestBalancerWithEncryptedTransfer.java index 30c7ce9c810..28c5194904a 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/balancer/TestBalancerWithEncryptedTransfer.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/balancer/TestBalancerWithEncryptedTransfer.java @@ -33,17 +33,17 @@ public class TestBalancerWithEncryptedTransfer { conf.setBoolean(DFSConfigKeys.DFS_BLOCK_ACCESS_TOKEN_ENABLE_KEY, true); } - @Test + @Test(timeout=60000) public void testEncryptedBalancer0() throws Exception { new TestBalancer().testBalancer0Internal(conf); } - @Test + @Test(timeout=60000) public void testEncryptedBalancer1() throws Exception { new TestBalancer().testBalancer1Internal(conf); } - @Test + @Test(timeout=60000) public void testEncryptedBalancer2() throws Exception { new TestBalancer().testBalancer2Internal(conf); }