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 eb164a8fa [#1755][FOLLOWUP] fix(server): Incorrect request info to 
output too much logs (#1760)
eb164a8fa is described below

commit eb164a8fa79cf70dcdbb13774686663cf11bc8af
Author: Junfan Zhang <[email protected]>
AuthorDate: Mon Jun 3 15:55:25 2024 +0800

    [#1755][FOLLOWUP] fix(server): Incorrect request info to output too much 
logs (#1760)
    
    ### What changes were proposed in this pull request?
    
    Fix incorrect request to make output too much logs
    
    ### Why are the changes needed?
    
    Followup for #1755
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Needn't
---
 .../main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/server/src/main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java 
b/server/src/main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java
index 7e1eb88cf..de378d66e 100644
--- 
a/server/src/main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java
+++ 
b/server/src/main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java
@@ -511,7 +511,7 @@ public class ShuffleServerGrpcService extends 
ShuffleServerImplBase {
           "Accepted blockIds report for {} blocks across {} partitions as 
shuffle result for task {}",
           expectedBlockCount,
           partitionToBlockIds.size(),
-          request);
+          requestInfo);
       int updatedBlockCount =
           shuffleServer
               .getShuffleTaskManager()

Reply via email to