svn merge -c 1426018 FIXES: 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/branches/branch-2@1426020 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6796f8d226
commit
7bec80179b
|
@ -491,6 +491,9 @@ Release 0.23.6 - UNRELEASED
|
||||||
MAPREDUCE-4890. Invalid TaskImpl state transitions when task fails while
|
MAPREDUCE-4890. Invalid TaskImpl state transitions when task fails while
|
||||||
speculating (jlowe)
|
speculating (jlowe)
|
||||||
|
|
||||||
|
MAPREDUCE-4902. Fix typo "receievd" should be "received" in log output
|
||||||
|
(Albert Chu via jlowe)
|
||||||
|
|
||||||
Release 0.23.5 - UNRELEASED
|
Release 0.23.5 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -282,7 +282,7 @@ class Fetcher<K,V> extends Thread {
|
||||||
LOG.debug("url="+msgToEncode+";encHash="+encHash+";replyHash="+replyHash);
|
LOG.debug("url="+msgToEncode+";encHash="+encHash+";replyHash="+replyHash);
|
||||||
// verify that replyHash is HMac of encHash
|
// verify that replyHash is HMac of encHash
|
||||||
SecureShuffleUtils.verifyReply(replyHash, encHash, jobTokenSecret);
|
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) {
|
} catch (IOException ie) {
|
||||||
boolean connectExcpt = ie instanceof ConnectException;
|
boolean connectExcpt = ie instanceof ConnectException;
|
||||||
ioErrs.increment(1);
|
ioErrs.increment(1);
|
||||||
|
|
Loading…
Reference in New Issue