Skip to content

Commit efbb06f

Browse files
wForgetHyukjinKwon
authored andcommitted
[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 <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
1 parent 4cc8101 commit efbb06f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/ExecutorAllocationManager.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ private[spark] class ExecutorAllocationManager(
614614
} else {
615615
executorMonitor.executorsKilled(executorsRemoved.toSeq)
616616
}
617-
logInfo(log"Executors ${MDC(EXECUTOR_IDS, executorsRemoved.mkString(","))}" +
617+
logInfo(log"Executors ${MDC(EXECUTOR_IDS, executorsRemoved.mkString(","))} " +
618618
log"removed due to idle timeout.")
619619
executorsRemoved.toSeq
620620
} else {

0 commit comments

Comments
 (0)