Skip to content

Commit

Permalink
YARN-11759: Fix log statement in RMAppImpl#processNodeUpdate
Browse files Browse the repository at this point in the history
Closes apache#7328

Signed-off-by: Chris Nauroth <[email protected]>
  • Loading branch information
programmerfromxian authored and cnauroth committed Jan 27, 2025
1 parent d9bcee9 commit 91535fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ private void createNewAttempt(ApplicationAttemptId appAttemptId) {
private void processNodeUpdate(RMAppNodeUpdateType type, RMNode node) {
NodeState nodeState = node.getState();
updatedNodes.put(node, RMAppNodeUpdateType.convertToNodeUpdateType(type));
LOG.debug("Received node update event:{} for node:{} with state:",
LOG.debug("Received node update event:{} for node:{} with state:{}",
type, node, nodeState);
}

Expand Down

0 comments on commit 91535fa

Please sign in to comment.