HADOOP-10946. Fix a bunch of typos in log messages (Ray Chiang via aw)
This commit is contained in:
parent
07981c8f60
commit
5f6129feb4
|
@ -503,6 +503,8 @@ Release 2.6.0 - UNRELEASED
|
|||
|
||||
HADOOP-11109. Site build is broken. (Jian He via atm)
|
||||
|
||||
HADOOP-10946. Fix a bunch of typos in log messages (Ray Chiang via aw)
|
||||
|
||||
Release 2.5.1 - 2014-09-05
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -41,7 +41,7 @@ public class VersionMismatchException extends IOException {
|
|||
/** Returns a string representation of this object. */
|
||||
@Override
|
||||
public String toString(){
|
||||
return "A record version mismatch occured. Expecting v"
|
||||
return "A record version mismatch occurred. Expecting v"
|
||||
+ expectedVersion + ", found v" + foundVersion;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -160,7 +160,7 @@ public abstract class MetricsDynamicMBeanBase implements DynamicMBean {
|
|||
else if (attributeName.endsWith(MAX_TIME))
|
||||
return or.getMaxTime();
|
||||
else {
|
||||
MetricsUtil.LOG.error("Unexpected attrubute suffix");
|
||||
MetricsUtil.LOG.error("Unexpected attribute suffix");
|
||||
throw new AttributeNotFoundException();
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -102,7 +102,7 @@ public class DiskChecker {
|
|||
*/
|
||||
public static void checkDir(File dir) throws DiskErrorException {
|
||||
if (!mkdirsWithExistsCheck(dir)) {
|
||||
throw new DiskErrorException("Can not create directory: "
|
||||
throw new DiskErrorException("Cannot create directory: "
|
||||
+ dir.toString());
|
||||
}
|
||||
checkDirAccess(dir);
|
||||
|
|
|
@ -685,7 +685,7 @@ public class Gridmix extends Configured implements Tool {
|
|||
} catch (IOException e) {
|
||||
LOG.warn("Failure killing " + job.getJobName(), e);
|
||||
} catch (Exception e) {
|
||||
LOG.error("Unexcpected exception", e);
|
||||
LOG.error("Unexpected exception", e);
|
||||
}
|
||||
}
|
||||
LOG.info("Done.");
|
||||
|
|
|
@ -1016,7 +1016,7 @@ public class StreamJob implements Tool {
|
|||
if (background_) {
|
||||
LOG.info("Job is running in background.");
|
||||
} else if (!jc_.monitorAndPrintJob(jobConf_, running_)) {
|
||||
LOG.error("Job not Successful!");
|
||||
LOG.error("Job not successful!");
|
||||
return 1;
|
||||
}
|
||||
LOG.info("Output directory: " + output_);
|
||||
|
|
Loading…
Reference in New Issue