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

ethanfeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/celeborn.git


The following commit(s) were added to refs/heads/main by this push:
     new 05fca23ed [MINOR] Fix a typo buffer to body in 
ChunkFetchSuccess.toString
05fca23ed is described below

commit 05fca23ed2e7bdb56b2b10fd91b2bda1a169e1a6
Author: SteNicholas <[email protected]>
AuthorDate: Mon Jul 21 13:31:18 2025 +0800

    [MINOR] Fix a typo buffer to body in ChunkFetchSuccess.toString
    
    ### What changes were proposed in this pull request?
    
    Fix a typo `buffer` to `body` in `ChunkFetchSuccess.toString`.
    
    ### Why are the changes needed?
    
    Since the field name of `AbstractMessage` is body, all the other places 
show `body=...` instead of `buffer=...`. We had better fix this typo for 
consistency.
    
    Backport https://github.com/apache/spark/pull/51570.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    CI.
    
    Closes #3378 from SteNicholas/chunk-fetch-success.
    
    Authored-by: SteNicholas <[email protected]>
    Signed-off-by: mingji <[email protected]>
---
 .../org/apache/celeborn/common/network/protocol/ChunkFetchSuccess.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/common/src/main/java/org/apache/celeborn/common/network/protocol/ChunkFetchSuccess.java
 
b/common/src/main/java/org/apache/celeborn/common/network/protocol/ChunkFetchSuccess.java
index d0297ec5a..5d2b25d66 100644
--- 
a/common/src/main/java/org/apache/celeborn/common/network/protocol/ChunkFetchSuccess.java
+++ 
b/common/src/main/java/org/apache/celeborn/common/network/protocol/ChunkFetchSuccess.java
@@ -95,7 +95,7 @@ public final class ChunkFetchSuccess extends ResponseMessage {
   public String toString() {
     return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE)
         .append("streamChunkId", streamChunkSlice)
-        .append("buffer", body())
+        .append("body", body())
         .toString();
   }
 }

Reply via email to