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

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


The following commit(s) were added to refs/heads/master by this push:
     new 222f5d403 [#1459][FOLLOWUP] fix(server): Fix the issue of log variable 
printing (#1648)
222f5d403 is described below

commit 222f5d403419e59e2f345ff6be7f51de01bcb806
Author: RickyMa <[email protected]>
AuthorDate: Tue Apr 16 09:59:44 2024 +0800

    [#1459][FOLLOWUP] fix(server): Fix the issue of log variable printing 
(#1648)
    
    ### What changes were proposed in this pull request?
    
    Fix the issue of log variable printing.
    
    ### Why are the changes needed?
    
    A follow-up PR for: https://github.com/apache/incubator-uniffle/pull/1461.
    
    ### 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