MAPREDUCE-4902. Fix typo "receievd" should be "received" in log output. Contributed by Albert Chu
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1426018 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8a576d67a1
commit
a7d444d002
|
@ -648,6 +648,9 @@ Release 0.23.6 - UNRELEASED
|
|||
MAPREDUCE-4890. Invalid TaskImpl state transitions when task fails while
|
||||
speculating (jlowe)
|
||||
|
||||
MAPREDUCE-4902. Fix typo "receievd" should be "received" in log output
|
||||
(Albert Chu via jlowe)
|
||||
|
||||
Release 0.23.5 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -282,7 +282,7 @@ class Fetcher<K,V> extends Thread {
|
|||
LOG.debug("url="+msgToEncode+";encHash="+encHash+";replyHash="+replyHash);
|
||||
// verify that replyHash is HMac of encHash
|
||||
SecureShuffleUtils.verifyReply(replyHash, encHash, jobTokenSecret);
|
||||
LOG.info("for url="+msgToEncode+" sent hash and receievd reply");
|
||||
LOG.info("for url="+msgToEncode+" sent hash and received reply");
|
||||
} catch (IOException ie) {
|
||||
boolean connectExcpt = ie instanceof ConnectException;
|
||||
ioErrs.increment(1);
|
||||
|
|
Loading…
Reference in New Issue