瀏覽代碼

HDFS-9571. Fix ASF Licence warnings in Jenkins reports. Contributed by Brahma Reddy Battula.

cnauroth 9 年之前
父節點
當前提交
6da9deec20

+ 3 - 0
hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt

@@ -2516,6 +2516,9 @@ Release 2.8.0 - UNRELEASED
     HDFS-9572. Prevent DataNode log spam if a client connects on the data
     HDFS-9572. Prevent DataNode log spam if a client connects on the data
     transfer port but sends no data. (cnauroth)
     transfer port but sends no data. (cnauroth)
 
 
+    HDFS-9571. Fix ASF Licence warnings in Jenkins reports
+    (Brahma Reddy Battula via cnauroth)
+
 Release 2.7.3 - UNRELEASED
 Release 2.7.3 - UNRELEASED
 
 
   INCOMPATIBLE CHANGES
   INCOMPATIBLE CHANGES

+ 13 - 6
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestMiniDFSCluster.java

@@ -63,17 +63,24 @@ public class TestMiniDFSCluster {
    */
    */
   @Test(timeout=100000)
   @Test(timeout=100000)
   public void testClusterWithoutSystemProperties() throws Throwable {
   public void testClusterWithoutSystemProperties() throws Throwable {
+    String oldPrp = System.getProperty(MiniDFSCluster.PROP_TEST_BUILD_DATA);
     System.clearProperty(MiniDFSCluster.PROP_TEST_BUILD_DATA);
     System.clearProperty(MiniDFSCluster.PROP_TEST_BUILD_DATA);
-    Configuration conf = new HdfsConfiguration();
-    File testDataCluster1 = new File(testDataPath, CLUSTER_1);
-    String c1Path = testDataCluster1.getAbsolutePath();
-    conf.set(MiniDFSCluster.HDFS_MINIDFS_BASEDIR, c1Path);
-    MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).build();
+    MiniDFSCluster cluster = null;
     try {
     try {
+      Configuration conf = new HdfsConfiguration();
+      File testDataCluster1 = new File(testDataPath, CLUSTER_1);
+      String c1Path = testDataCluster1.getAbsolutePath();
+      conf.set(MiniDFSCluster.HDFS_MINIDFS_BASEDIR, c1Path);
+      cluster = new MiniDFSCluster.Builder(conf).build();
       assertEquals(new File(c1Path + "/data"),
       assertEquals(new File(c1Path + "/data"),
           new File(cluster.getDataDirectory()));
           new File(cluster.getDataDirectory()));
     } finally {
     } finally {
-      cluster.shutdown();
+      if (oldPrp != null) {
+        System.setProperty(MiniDFSCluster.PROP_TEST_BUILD_DATA, oldPrp);
+      }
+      if (cluster != null) {
+        cluster.shutdown();
+      }
     }
     }
   }
   }
 
 

+ 4 - 4
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/blockmanagement/TestBlocksWithNotEnoughRacks.java

@@ -387,8 +387,8 @@ public class TestBlocksWithNotEnoughRacks {
 
 
     // Configure an excludes file
     // Configure an excludes file
     FileSystem localFileSys = FileSystem.getLocal(conf);
     FileSystem localFileSys = FileSystem.getLocal(conf);
-    Path workingDir = localFileSys.getWorkingDirectory();
-    Path dir = new Path(workingDir, "build/test/data/temp/decommission");
+    Path workingDir = new Path(MiniDFSCluster.getBaseDirectory());
+    Path dir = new Path(workingDir, "temp/decommission");
     Path excludeFile = new Path(dir, "exclude");
     Path excludeFile = new Path(dir, "exclude");
     Path includeFile = new Path(dir, "include");
     Path includeFile = new Path(dir, "include");
     assertTrue(localFileSys.mkdirs(dir));
     assertTrue(localFileSys.mkdirs(dir));
@@ -440,8 +440,8 @@ public class TestBlocksWithNotEnoughRacks {
 
 
     // Configure an excludes file
     // Configure an excludes file
     FileSystem localFileSys = FileSystem.getLocal(conf);
     FileSystem localFileSys = FileSystem.getLocal(conf);
-    Path workingDir = localFileSys.getWorkingDirectory();
-    Path dir = new Path(workingDir, "build/test/data/temp/decommission");
+    Path workingDir = new Path(MiniDFSCluster.getBaseDirectory());
+    Path dir = new Path(workingDir, "temp/decommission");
     Path excludeFile = new Path(dir, "exclude");
     Path excludeFile = new Path(dir, "exclude");
     Path includeFile = new Path(dir, "include");
     Path includeFile = new Path(dir, "include");
     assertTrue(localFileSys.mkdirs(dir));
     assertTrue(localFileSys.mkdirs(dir));

+ 4 - 4
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestHostsFiles.java

@@ -83,8 +83,8 @@ public class TestHostsFiles {
 
 
     // Configure an excludes file
     // Configure an excludes file
     FileSystem localFileSys = FileSystem.getLocal(conf);
     FileSystem localFileSys = FileSystem.getLocal(conf);
-    Path workingDir = localFileSys.getWorkingDirectory();
-    Path dir = new Path(workingDir, "build/test/data/temp/decommission");
+    Path workingDir = new Path(MiniDFSCluster.getBaseDirectory());
+    Path dir = new Path(workingDir, "temp/decommission");
     Path excludeFile = new Path(dir, "exclude");
     Path excludeFile = new Path(dir, "exclude");
     Path includeFile = new Path(dir, "include");
     Path includeFile = new Path(dir, "include");
     assertTrue(localFileSys.mkdirs(dir));
     assertTrue(localFileSys.mkdirs(dir));
@@ -143,8 +143,8 @@ public class TestHostsFiles {
 
 
     // Configure an excludes file
     // Configure an excludes file
     FileSystem localFileSys = FileSystem.getLocal(conf);
     FileSystem localFileSys = FileSystem.getLocal(conf);
-    Path workingDir = localFileSys.getWorkingDirectory();
-    Path dir = new Path(workingDir, "build/test/data/temp/decommission");
+    Path workingDir = new Path(MiniDFSCluster.getBaseDirectory());
+    Path dir = new Path(workingDir, "temp/decommission");
     Path excludeFile = new Path(dir, "exclude");
     Path excludeFile = new Path(dir, "exclude");
     Path includeFile = new Path(dir, "include");
     Path includeFile = new Path(dir, "include");
     assertTrue(localFileSys.mkdirs(dir));
     assertTrue(localFileSys.mkdirs(dir));