Skip to content

Commit ceae615

Browse files
authored
[MINOR] fix: Add a missing bracket in log when getting shuffle index using Netty (apache#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.
1 parent 4969822 commit ceae615

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal-client/src/main/java/org/apache/uniffle/client/impl/grpc/ShuffleServerGrpcNettyClient.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,8 @@ public RssGetShuffleIndexResponse getShuffleIndex(RssGetShuffleIndexRequest requ
325325
+ "], shuffleId["
326326
+ request.getShuffleId()
327327
+ "], partitionId["
328-
+ request.getPartitionId();
328+
+ request.getPartitionId()
329+
+ "]";
329330
long start = System.currentTimeMillis();
330331
int retry = 0;
331332
RpcResponse rpcResponse;

0 commit comments

Comments
 (0)