Skip to content

Commit

Permalink
HDFS-11574. Spelling mistakes in the Java source. Contributed by Hu X…
Browse files Browse the repository at this point in the history
…iaodong.
  • Loading branch information
raviprak-altiscale committed Mar 24, 2017
1 parent ab759e9 commit d4f73e7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* per-se. It constructs a wrapper proxy that sends the request to ALL
* underlying proxies simultaneously. It assumes the in an HA setup, there will
* be only one Active, and the active should respond faster than any configured
* standbys. Once it recieve a response from any one of the configred proxies,
* standbys. Once it receive a response from any one of the configred proxies,
* outstanding requests to other proxies are immediately cancelled.
*/
public class RequestHedgingProxyProvider<T> extends
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ private void sendRecvData(String testDescription,
LOG.info("Expected: " + expected);

if (eofExpected) {
throw new IOException("Did not recieve IOException when an exception " +
throw new IOException("Did not receive IOException when an exception " +
"is expected while reading from " + datanode);
}
assertEquals(expected, received);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1282,7 +1282,7 @@ public void testRemoveXAttr() throws Exception {

/**
* When NN failover happens, if the client did not receive the response and
* send a retry request to the other NN, the same response should be recieved
* send a retry request to the other NN, the same response should be received
* based on the retry cache.
*/
public void testClientRetryWithFailover(final AtMostOnceOp op)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ nodeManagerVersionId, containerReports, getRunningApplications(),
"Message from ResourceManager: "
+ regNMResponse.getDiagnosticsMessage();
throw new YarnRuntimeException(
"Recieved SHUTDOWN signal from Resourcemanager, Registration of NodeManager failed, "
"Received SHUTDOWN signal from Resourcemanager, Registration of NodeManager failed, "
+ message);
}

Expand Down Expand Up @@ -965,7 +965,7 @@ private void updateMasterKeys(NodeHeartbeatResponse response) {
private boolean handleShutdownOrResyncCommand(
NodeHeartbeatResponse response) {
if (response.getNodeAction() == NodeAction.SHUTDOWN) {
LOG.warn("Recieved SHUTDOWN signal from Resourcemanager as part of"
LOG.warn("Received SHUTDOWN signal from Resourcemanager as part of"
+ " heartbeat, hence shutting down.");
LOG.warn("Message from ResourceManager: "
+ response.getDiagnosticsMessage());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,7 @@ protected NodeStatusUpdater createUpdater(Context context,
}
};
verifyNodeStartFailure(
"Recieved SHUTDOWN signal from Resourcemanager, "
"Received SHUTDOWN signal from Resourcemanager, "
+ "Registration of NodeManager failed, "
+ "Message from ResourceManager: RM Shutting Down Node");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ public synchronized List<Container> getResources() throws IOException {

if(LOG.isDebugEnabled()) {
LOG.debug("getResources() for " + applicationId + ":"
+ " ask=" + ask.size() + " recieved=" + containers.size());
+ " ask=" + ask.size() + " received=" + containers.size());
}

return containers;
Expand Down

0 comments on commit d4f73e7

Please sign in to comment.