Commit 94e211c
authored
[MINOR] Eliminate the usage of the shaded Guava Sets class (#2432)
### What changes were proposed in this pull request?
Replacing shaded guava's `Sets` class usage with `HashSet`
### Why are the changes needed?
Hadoop can throw this error if the classpath is not correctly set:
```
org.apache.uniffle.client.impl.ShuffleWriteClientImpl: Unexpected exceptions occurred while sending shuffle data
java.util.concurrent.CompletionException: java.lang.NoClassDefFoundError: org/apache/hbase/thirdparty/org/glassfish/jersey/internal/guava/Sets
at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:273)
```
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
UTs.1 parent 650d1c7 commit 94e211c
File tree
1 file changed
+2
-2
lines changed- internal-client/src/main/java/org/apache/uniffle/client/impl/grpc
1 file changed
+2
-2
lines changedLines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| 21 | + | |
21 | 22 | | |
22 | 23 | | |
23 | 24 | | |
| |||
26 | 27 | | |
27 | 28 | | |
28 | 29 | | |
29 | | - | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
145 | | - | |
| 145 | + | |
146 | 146 | | |
147 | 147 | | |
148 | 148 | | |
| |||
0 commit comments