This is an automated email from the ASF dual-hosted git repository. rickyma 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 ceae615e3 [MINOR] fix: Add a missing bracket in log when getting shuffle index using Netty (#1815) ceae615e3 is described below commit ceae615e3566cc988ce0603ff8bea477c4de05bf Author: dingshun3016 <dingshun...@163.com> AuthorDate: Fri Jun 21 12:14:11 2024 +0800 [MINOR] fix: Add a missing bracket in log when getting shuffle index using Netty (#1815) ### What changes were proposed in this pull request? Add a missing bracket in log when getting shuffle index using Netty. ### Why are the changes needed? A better log format. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? No need. --- .../apache/uniffle/client/impl/grpc/ShuffleServerGrpcNettyClient.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal-client/src/main/java/org/apache/uniffle/client/impl/grpc/ShuffleServerGrpcNettyClient.java b/internal-client/src/main/java/org/apache/uniffle/client/impl/grpc/ShuffleServerGrpcNettyClient.java index e0bd31c0c..a05d94b51 100644 --- a/internal-client/src/main/java/org/apache/uniffle/client/impl/grpc/ShuffleServerGrpcNettyClient.java +++ b/internal-client/src/main/java/org/apache/uniffle/client/impl/grpc/ShuffleServerGrpcNettyClient.java @@ -325,7 +325,8 @@ public class ShuffleServerGrpcNettyClient extends ShuffleServerGrpcClient { + "], shuffleId[" + request.getShuffleId() + "], partitionId[" - + request.getPartitionId(); + + request.getPartitionId() + + "]"; long start = System.currentTimeMillis(); int retry = 0; RpcResponse rpcResponse;