Skip to content

Commit

Permalink
fix typo: missing space (#59)
Browse files Browse the repository at this point in the history
I'm happy to file a JIRA if necessary; I wasn't sure if that was useful or not for a 1-character change. :) 

The log message looks like this currently: 

```
2020-02-10 20:12:58,267 [INFO] [Dispatcher thread {Central}] |node.AMNodeImpl|: Attempt failedon node: ...
```
  • Loading branch information
jacobtolar authored Mar 5, 2021
1 parent 2fefe4a commit 2dcbe0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ protected static class TaskAttemptFailedTransition implements
@Override
public AMNodeState transition(AMNodeImpl node, AMNodeEvent nEvent) {
AMNodeEventTaskAttemptEnded event = (AMNodeEventTaskAttemptEnded) nEvent;
LOG.info("Attempt " + (event.failed() ? "failed" : "killed") + "on node: " + node.getNodeId()
LOG.info("Attempt " + (event.failed() ? "failed" : "killed") + " on node: " + node.getNodeId()
+ " TA: " + event.getTaskAttemptId()
+ ", container: " + event.getContainerId() + ", numFailedTAs: "
+ node.numFailedTAs);
Expand Down

0 comments on commit 2dcbe0b

Please sign in to comment.