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:
parent
747551a184
commit
cfff5ff7f4
|
@ -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
|
||||||
|
|
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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>() {
|
||||||
|
|
Loading…
Reference in New Issue