HADOOP-8931. Add Java version to startup message. Contributed by Eli Collins
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1399015 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0f4838ab6b
commit
b5e210f215
|
@ -54,6 +54,8 @@ Release 2.0.3-alpha - Unreleased
|
||||||
HADOOP-8922. Provide alternate JSONP output for JMXJsonServlet to allow
|
HADOOP-8922. Provide alternate JSONP output for JMXJsonServlet to allow
|
||||||
javascript in browser (Damien Hardy via bobby)
|
javascript in browser (Damien Hardy via bobby)
|
||||||
|
|
||||||
|
HADOOP-8931. Add Java version to startup message. (eli)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-8866. SampleQuantiles#query is O(N^2) instead of O(N). (Andrew Wang
|
HADOOP-8866. SampleQuantiles#query is O(N^2) instead of O(N). (Andrew Wang
|
||||||
|
|
|
@ -608,7 +608,8 @@ public class StringUtils {
|
||||||
" build = " + VersionInfo.getUrl() + " -r "
|
" build = " + VersionInfo.getUrl() + " -r "
|
||||||
+ VersionInfo.getRevision()
|
+ VersionInfo.getRevision()
|
||||||
+ "; compiled by '" + VersionInfo.getUser()
|
+ "; compiled by '" + VersionInfo.getUser()
|
||||||
+ "' on " + VersionInfo.getDate()}
|
+ "' on " + VersionInfo.getDate(),
|
||||||
|
" java = " + System.getProperty("java.version") }
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue