diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index f32e0cad65..83a1386ec7 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -452,6 +452,8 @@ Release 2.0.3-alpha - Unreleased HDFS-4058. DirectoryScanner may fail with IOOB if the directory scanning threads return out of volume order. (eli) + HDFS-3985. Add timeouts to TestMulitipleNNDataBlockScanner. (todd via eli) + Release 2.0.2-alpha - 2012-09-07 INCOMPATIBLE CHANGES diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/TestMultipleNNDataBlockScanner.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/TestMultipleNNDataBlockScanner.java index 67964e1841..7a9b67fd39 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/TestMultipleNNDataBlockScanner.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/TestMultipleNNDataBlockScanner.java @@ -74,7 +74,7 @@ public class TestMultipleNNDataBlockScanner { } } - @Test + @Test(timeout=120000) public void testDataBlockScanner() throws IOException, InterruptedException { setUp(); try { @@ -97,7 +97,7 @@ public class TestMultipleNNDataBlockScanner { } } - @Test + @Test(timeout=120000) public void testBlockScannerAfterRefresh() throws IOException, InterruptedException { setUp(); @@ -149,7 +149,7 @@ public class TestMultipleNNDataBlockScanner { } } - @Test + @Test(timeout=120000) public void testBlockScannerAfterRestart() throws IOException, InterruptedException { setUp(); @@ -176,7 +176,7 @@ public class TestMultipleNNDataBlockScanner { } } - @Test + @Test(timeout=120000) public void test2NNBlockRescanInterval() throws IOException { ((Log4JLogger)BlockPoolSliceScanner.LOG).getLogger().setLevel(Level.ALL); Configuration conf = new HdfsConfiguration(); @@ -206,7 +206,7 @@ public class TestMultipleNNDataBlockScanner { * * @throws Exception */ - @Test + @Test(timeout=120000) public void testBlockRescanInterval() throws IOException { ((Log4JLogger)BlockPoolSliceScanner.LOG).getLogger().setLevel(Level.ALL); Configuration conf = new HdfsConfiguration();