MAPREDUCE-3646. Remove redundant URL info from "mapred job" output. (Jonathan Eagles via mahadev) - Merging r1235034 from trunk.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1235042 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mahadev Konar 2012-01-23 22:34:44 +00:00
parent 747551a184
commit cfff5ff7f4
3 changed files with 4 additions and 1 deletions

View File

@ -490,6 +490,9 @@ Release 0.23.1 - Unreleased
MAPREDUCE-3702. internal server error trying access application master MAPREDUCE-3702. internal server error trying access application master
via proxy with filter enabled (Thomas Graves via mahadev) via proxy with filter enabled (Thomas Graves via mahadev)
MAPREDUCE-3646. Remove redundant URL info from "mapred job" output.
(Jonathan Eagles via mahadev)
Release 0.23.0 - 2011-11-01 Release 0.23.0 - 2011-11-01
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -1216,6 +1216,7 @@ public class Job extends JobContextImpl implements JobContext {
} }
}); });
state = JobState.RUNNING; state = JobState.RUNNING;
LOG.info("The url to track the job: " + getTrackingURL());
} }
/** /**

View File

@ -175,7 +175,6 @@ public class ClientServiceDelegate {
+ ":" + addr.getPort())); + ":" + addr.getPort()));
newUgi.addToken(clientToken); newUgi.addToken(clientToken);
} }
LOG.info("The url to track the job: " + application.getTrackingUrl());
LOG.debug("Connecting to " + serviceAddr); LOG.debug("Connecting to " + serviceAddr);
final String tempStr = serviceAddr; final String tempStr = serviceAddr;
realProxy = newUgi.doAs(new PrivilegedExceptionAction<MRClientProtocol>() { realProxy = newUgi.doAs(new PrivilegedExceptionAction<MRClientProtocol>() {