YARN-2450. Fix typos in log messages. Contributed by Ray Chiang.
This commit is contained in:
parent
4bd0194e6b
commit
3de66011c2
@ -255,6 +255,8 @@ Release 2.6.0 - UNRELEASED
|
||||
is not automatically added when hadoop.http.filter.initializers is not
|
||||
configured. (Varun Vasudev via zjshen)
|
||||
|
||||
YARN-2450. Fix typos in log messages. (Ray Chiang via hitesh)
|
||||
|
||||
Release 2.5.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -519,7 +519,7 @@ public void run() throws YarnException, IOException {
|
||||
publishApplicationAttemptEvent(timelineClient, appAttemptID.toString(),
|
||||
DSEvent.DS_APP_ATTEMPT_START);
|
||||
} catch (Exception e) {
|
||||
LOG.error("App Attempt start event coud not be pulished for "
|
||||
LOG.error("App Attempt start event could not be published for "
|
||||
+ appAttemptID.toString(), e);
|
||||
}
|
||||
|
||||
@ -616,7 +616,7 @@ public void run() throws YarnException, IOException {
|
||||
publishApplicationAttemptEvent(timelineClient, appAttemptID.toString(),
|
||||
DSEvent.DS_APP_ATTEMPT_END);
|
||||
} catch (Exception e) {
|
||||
LOG.error("App Attempt start event coud not be pulished for "
|
||||
LOG.error("App Attempt start event could not be published for "
|
||||
+ appAttemptID.toString(), e);
|
||||
}
|
||||
}
|
||||
@ -726,7 +726,7 @@ public void onContainersCompleted(List<ContainerStatus> completedContainers) {
|
||||
try {
|
||||
publishContainerEndEvent(timelineClient, containerStatus);
|
||||
} catch (Exception e) {
|
||||
LOG.error("Container start event could not be pulished for "
|
||||
LOG.error("Container start event could not be published for "
|
||||
+ containerStatus.getContainerId().toString(), e);
|
||||
}
|
||||
}
|
||||
@ -847,7 +847,7 @@ public void onContainerStarted(ContainerId containerId,
|
||||
ApplicationMaster.publishContainerStartEvent(
|
||||
applicationMaster.timelineClient, container);
|
||||
} catch (Exception e) {
|
||||
LOG.error("Container start event coud not be pulished for "
|
||||
LOG.error("Container start event could not be published for "
|
||||
+ container.getId().toString(), e);
|
||||
}
|
||||
}
|
||||
|
@ -197,7 +197,7 @@ public static void main(String[] args) {
|
||||
}
|
||||
result = client.run();
|
||||
} catch (Throwable t) {
|
||||
LOG.fatal("Error running CLient", t);
|
||||
LOG.fatal("Error running Client", t);
|
||||
System.exit(1);
|
||||
}
|
||||
if (result) {
|
||||
|
@ -801,7 +801,7 @@ public void run() {
|
||||
try {
|
||||
Path local = completed.get();
|
||||
if (null == assoc) {
|
||||
LOG.error("Localized unkonwn resource to " + completed);
|
||||
LOG.error("Localized unknown resource to " + completed);
|
||||
// TODO delete
|
||||
return;
|
||||
}
|
||||
@ -810,7 +810,7 @@ public void run() {
|
||||
.getDU(new File(local.toUri()))));
|
||||
assoc.getResource().unlock();
|
||||
} catch (ExecutionException e) {
|
||||
LOG.info("Failed to download rsrc " + assoc.getResource(),
|
||||
LOG.info("Failed to download resource " + assoc.getResource(),
|
||||
e.getCause());
|
||||
LocalResourceRequest req = assoc.getResource().getRequest();
|
||||
publicRsrc.handle(new ResourceFailedLocalizationEvent(req,
|
||||
|
@ -300,7 +300,7 @@ private void loadRMAppState(RMState rmState) throws Exception {
|
||||
assert appState != null;
|
||||
appState.attempts.put(attemptState.getAttemptId(), attemptState);
|
||||
}
|
||||
LOG.info("Done Loading applications from FS state store");
|
||||
LOG.info("Done loading applications from FS state store");
|
||||
} catch (Exception e) {
|
||||
LOG.error("Failed to load state.", e);
|
||||
throw e;
|
||||
|
@ -608,7 +608,7 @@ private void loadApplicationAttemptState(ApplicationState appState,
|
||||
appState.attempts.put(attemptState.getAttemptId(), attemptState);
|
||||
}
|
||||
}
|
||||
LOG.debug("Done Loading applications from ZK state store");
|
||||
LOG.debug("Done loading applications from ZK state store");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -289,7 +289,7 @@ public void run() {
|
||||
tokenWithConf = queue.take();
|
||||
final TokenWithConf current = tokenWithConf;
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Canceling token " + tokenWithConf.token.getService());
|
||||
LOG.debug("Cancelling token " + tokenWithConf.token.getService());
|
||||
}
|
||||
// need to use doAs so that http can find the kerberos tgt
|
||||
UserGroupInformation.getLoginUser()
|
||||
|
Loading…
Reference in New Issue
Block a user