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

roryqi pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git


The following commit(s) were added to refs/heads/branch-0.9 by this push:
     new df02114f3 [#1459][FOLLOWUP] fix(server): Fix the issue of log variable 
printing (#1672)
df02114f3 is described below

commit df02114f300401c177433c4e04074c112d3a1042
Author: RickyMa <[email protected]>
AuthorDate: Mon May 6 11:27:14 2024 +0800

    [#1459][FOLLOWUP] fix(server): Fix the issue of log variable printing 
(#1672)
    
    ### What changes were proposed in this pull request?
    
    Fix the issue of log variable printing.
    
    ### Why are the changes needed?
    
    Cherry pick commits https://github.com/apache/incubator-uniffle/pull/1643 
and https://github.com/apache/incubator-uniffle/pull/1648 from master to 
branch-0.9.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Unnecessary.
---
 server/src/main/java/org/apache/uniffle/server/ShuffleFlushManager.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/server/src/main/java/org/apache/uniffle/server/ShuffleFlushManager.java 
b/server/src/main/java/org/apache/uniffle/server/ShuffleFlushManager.java
index f75cbb68a..a41168422 100644
--- a/server/src/main/java/org/apache/uniffle/server/ShuffleFlushManager.java
+++ b/server/src/main/java/org/apache/uniffle/server/ShuffleFlushManager.java
@@ -111,7 +111,7 @@ public class ShuffleFlushManager {
       }
 
       if (reachRetryMax(event)) {
-        LOG.error("The event:{] has been reached to max retry times, it will 
be dropped.", event);
+        LOG.error("The event:{} has been reached to max retry times, it will 
be dropped.", event);
         throw new EventDiscardException();
       }
 

Reply via email to