Przeglądaj źródła

HADOOP-11041. VersionInfo specifies subversion (Tsuyoshi OZAWA via aw)

Allen Wittenauer 11 lat temu
rodzic
commit
e06d2e3c98

+ 2 - 0
hadoop-common-project/hadoop-common/CHANGES.txt

@@ -127,6 +127,8 @@ Trunk (Unreleased)
 
     HADOOP-11013. CLASSPATH handling should be consolidated, debuggable (aw)
 
+    HADOOP-11041. VersionInfo specifies subversion (Tsuyoshi OZAWA via aw)
+
   BUG FIXES
 
     HADOOP-9451. Fault single-layer config if node group topology is enabled.

+ 2 - 1
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/VersionInfo.java

@@ -170,7 +170,8 @@ public class VersionInfo {
   public static void main(String[] args) {
     LOG.debug("version: "+ getVersion());
     System.out.println("Hadoop " + getVersion());
-    System.out.println("Subversion " + getUrl() + " -r " + getRevision());
+    System.out.println("Source code repository " + getUrl() + " -r " +
+        getRevision());
     System.out.println("Compiled by " + getUser() + " on " + getDate());
     System.out.println("Compiled with protoc " + getProtocVersion());
     System.out.println("From source with checksum " + getSrcChecksum());