jiang13021 commented on PR #3171:
URL: https://github.com/apache/celeborn/pull/3171#issuecomment-2760490744

   @AngersZhuuuu Maybe we can just modify 
org/apache/celeborn/client/ShuffleClientImpl:PushMergedDataWrappedCallback
   ```
   @Override
             public void onSuccess(ByteBuffer response) {
               byte reason = response.get();
   ......
   ```
   to 
   ```
   @Override
         public void onSuccess(ByteBuffer response) {
           byte reason = StatusCode.SUCCESS.getValue();
           if (response.remaining() > 0) {
             reason = response.get();
           }
   ......
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to