HADOOP-10946. Fix a bunch of typos in log messages (Ray Chiang via aw)

This commit is contained in:
Allen Wittenauer 2014-09-19 11:31:43 -07:00
parent 07981c8f60
commit 5f6129feb4
6 changed files with 7 additions and 5 deletions

View File

@ -503,6 +503,8 @@ Release 2.6.0 - UNRELEASED
HADOOP-11109. Site build is broken. (Jian He via atm) 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 Release 2.5.1 - 2014-09-05
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -41,7 +41,7 @@ public class VersionMismatchException extends IOException {
/** Returns a string representation of this object. */ /** Returns a string representation of this object. */
@Override @Override
public String toString(){ public String toString(){
return "A record version mismatch occured. Expecting v" return "A record version mismatch occurred. Expecting v"
+ expectedVersion + ", found v" + foundVersion; + expectedVersion + ", found v" + foundVersion;
} }
} }

View File

@ -160,7 +160,7 @@ public abstract class MetricsDynamicMBeanBase implements DynamicMBean {
else if (attributeName.endsWith(MAX_TIME)) else if (attributeName.endsWith(MAX_TIME))
return or.getMaxTime(); return or.getMaxTime();
else { else {
MetricsUtil.LOG.error("Unexpected attrubute suffix"); MetricsUtil.LOG.error("Unexpected attribute suffix");
throw new AttributeNotFoundException(); throw new AttributeNotFoundException();
} }
} else { } else {

View File

@ -102,7 +102,7 @@ public class DiskChecker {
*/ */
public static void checkDir(File dir) throws DiskErrorException { public static void checkDir(File dir) throws DiskErrorException {
if (!mkdirsWithExistsCheck(dir)) { if (!mkdirsWithExistsCheck(dir)) {
throw new DiskErrorException("Can not create directory: " throw new DiskErrorException("Cannot create directory: "
+ dir.toString()); + dir.toString());
} }
checkDirAccess(dir); checkDirAccess(dir);

View File

@ -685,7 +685,7 @@ public class Gridmix extends Configured implements Tool {
} catch (IOException e) { } catch (IOException e) {
LOG.warn("Failure killing " + job.getJobName(), e); LOG.warn("Failure killing " + job.getJobName(), e);
} catch (Exception e) { } catch (Exception e) {
LOG.error("Unexcpected exception", e); LOG.error("Unexpected exception", e);
} }
} }
LOG.info("Done."); LOG.info("Done.");

View File

@ -1016,7 +1016,7 @@ public class StreamJob implements Tool {
if (background_) { if (background_) {
LOG.info("Job is running in background."); LOG.info("Job is running in background.");
} else if (!jc_.monitorAndPrintJob(jobConf_, running_)) { } else if (!jc_.monitorAndPrintJob(jobConf_, running_)) {
LOG.error("Job not Successful!"); LOG.error("Job not successful!");
return 1; return 1;
} }
LOG.info("Output directory: " + output_); LOG.info("Output directory: " + output_);