This is an automated email from the ASF dual-hosted git repository.
csy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git
The following commit(s) were added to refs/heads/master by this push:
new 8e0681e4 [AURON #2028] Fix extra brace in SparkOnHeapSpillManager log
message. (#2029)
8e0681e4 is described below
commit 8e0681e4531df16848dbd86aea84a748aa0c4d65
Author: slfan1989 <[email protected]>
AuthorDate: Wed Feb 25 18:50:13 2026 +0800
[AURON #2028] Fix extra brace in SparkOnHeapSpillManager log message.
(#2029)
### Which issue does this PR close?
Closes #2028
### Rationale for this change
There is an extra closing brace in the log message in
`SparkOnHeapSpillManager.scala` at line 161, causing improper log
formatting.
### What changes are included in this PR?
Remove the extra closing brace `}` from the log message
### Are there any user-facing changes?
No.
### How was this patch tested?
Exists Junit Test.
Signed-off-by: slfan1989 <[email protected]>
---
.../org/apache/spark/sql/auron/memory/SparkOnHeapSpillManager.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/spark-extension/src/main/scala/org/apache/spark/sql/auron/memory/SparkOnHeapSpillManager.scala
b/spark-extension/src/main/scala/org/apache/spark/sql/auron/memory/SparkOnHeapSpillManager.scala
index e9d3add9..b1122502 100644
---
a/spark-extension/src/main/scala/org/apache/spark/sql/auron/memory/SparkOnHeapSpillManager.scala
+++
b/spark-extension/src/main/scala/org/apache/spark/sql/auron/memory/SparkOnHeapSpillManager.scala
@@ -158,7 +158,7 @@ class SparkOnHeapSpillManager(taskContext: TaskContext)
return 0L
}
- logInfo(s"starts spilling to disk, size=${Utils.bytesToString(size)}}")
+ logInfo(s"starts spilling to disk, size=${Utils.bytesToString(size)}")
dumpStatus()
var totalFreed = 0L