This is an automated email from the ASF dual-hosted git repository.

cnauroth pushed a commit to branch branch-3.3
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-3.3 by this push:
     new 666561e0ed6 YARN-11759: Fix log statement in 
RMAppImpl#processNodeUpdate
666561e0ed6 is described below

commit 666561e0ed66cc454160804e4c179c2c26275948
Author: programmerfromxian 
<54138457+programmerfromx...@users.noreply.github.com>
AuthorDate: Mon Jan 27 18:04:18 2025 +0000

    YARN-11759: Fix log statement in RMAppImpl#processNodeUpdate
    
    Closes #7328
    
    Signed-off-by: Chris Nauroth <cnaur...@apache.org>
    (cherry picked from commit 91535fa7b7dee6c94dc61ab13500fe35dcf06cae)
    (cherry picked from commit 0a96b030253e14d72cbb51e90c5706aeb1506ad5)
---
 .../org/apache/hadoop/yarn/server/resourcemanager/rmapp/RMAppImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/RMAppImpl.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/RMAppImpl.java
index 34cef72e27d..f821ffbb0f0 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/RMAppImpl.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/RMAppImpl.java
@@ -1014,7 +1014,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);
   }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org

Reply via email to