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

gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new efbb06f40d02 [MINOR][CORE] Fix a missing space in log
efbb06f40d02 is described below

commit efbb06f40d02a73576aed3584b2cad70c8ce75fa
Author: wforget <643348...@qq.com>
AuthorDate: Thu Jul 17 18:52:37 2025 +0900

    [MINOR][CORE] Fix a missing space in log
    
    ### What changes were proposed in this pull request?
    
    Add a missing space to the log
    
    ### Why are the changes needed?
    
    ### Does this PR introduce _any_ user-facing change?
    
    No
    
    ### How was this patch tested?
    
    before this:
    ```
    INFO ExecutorAllocationManager: Executors 0removed due to idle timeout.
    ```
    
    after this:
    ```
    INFO ExecutorAllocationManager: Executors 0 removed due to idle timeout.
    ```
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No
    
    Closes #51527 from wForget/minor.
    
    Authored-by: wforget <643348...@qq.com>
    Signed-off-by: Hyukjin Kwon <gurwls...@apache.org>
---
 core/src/main/scala/org/apache/spark/ExecutorAllocationManager.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/src/main/scala/org/apache/spark/ExecutorAllocationManager.scala 
b/core/src/main/scala/org/apache/spark/ExecutorAllocationManager.scala
index dd131e443135..3d0b58b42911 100644
--- a/core/src/main/scala/org/apache/spark/ExecutorAllocationManager.scala
+++ b/core/src/main/scala/org/apache/spark/ExecutorAllocationManager.scala
@@ -614,7 +614,7 @@ private[spark] class ExecutorAllocationManager(
       } else {
         executorMonitor.executorsKilled(executorsRemoved.toSeq)
       }
-      logInfo(log"Executors ${MDC(EXECUTOR_IDS, 
executorsRemoved.mkString(","))}" +
+      logInfo(log"Executors ${MDC(EXECUTOR_IDS, 
executorsRemoved.mkString(","))} " +
         log"removed due to idle timeout.")
       executorsRemoved.toSeq
     } else {


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

Reply via email to