This is an automated email from the ASF dual-hosted git repository.
maobaolong 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 ab1d3aeba [MINOR] fix(client): Fix error log for
CoordinatorGrpcRetryableClient#accesCluster (#2258)
ab1d3aeba is described below
commit ab1d3aeba8fb47b3e0ec7c2023bc94531e95bb5d
Author: maobaolong <[email protected]>
AuthorDate: Fri Nov 22 20:45:24 2024 +0800
[MINOR] fix(client): Fix error log for
CoordinatorGrpcRetryableClient#accesCluster (#2258)
### What changes were proposed in this pull request?
Fix error log for CoordinatorGrpcRetryableClient#accesCluster
### Why are the changes needed?
The existing log can make user confused.
### Does this PR introduce _any_ user-facing change?
Correct spark am log
### How was this patch tested?
No need.
---
.../apache/uniffle/client/impl/grpc/CoordinatorGrpcRetryableClient.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/internal-client/src/main/java/org/apache/uniffle/client/impl/grpc/CoordinatorGrpcRetryableClient.java
b/internal-client/src/main/java/org/apache/uniffle/client/impl/grpc/CoordinatorGrpcRetryableClient.java
index f4bf3be87..418575fd4 100644
---
a/internal-client/src/main/java/org/apache/uniffle/client/impl/grpc/CoordinatorGrpcRetryableClient.java
+++
b/internal-client/src/main/java/org/apache/uniffle/client/impl/grpc/CoordinatorGrpcRetryableClient.java
@@ -211,7 +211,7 @@ public class CoordinatorGrpcRetryableClient implements
CoordinatorClient {
request.getRetryIntervalMs(),
request.getRetryTimes());
} catch (Throwable throwable) {
- throw new RssException("getShuffleAssignments failed!", throwable);
+ throw new RssException("accessCluster failed!", throwable);
}
}