This is an automated email from the ASF dual-hosted git repository.
ckj 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 7b633c03 [Minor] Move GrpcServerTest to common.rpc package (#439)
7b633c03 is described below
commit 7b633c0352c616f9c0d0e999ca36a01e110fd268
Author: Kaijie Chen <[email protected]>
AuthorDate: Mon Dec 19 01:24:27 2022 +0800
[Minor] Move GrpcServerTest to common.rpc package (#439)
### What changes were proposed in this pull request?
Move GrpcServerTest to common.rpc package.
### Why are the changes needed?
GrpcServer is in common.rpc package.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
CI.
---
.../test/java/org/apache/uniffle/common/{ => rpc}/GrpcServerTest.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/common/src/test/java/org/apache/uniffle/common/GrpcServerTest.java
b/common/src/test/java/org/apache/uniffle/common/rpc/GrpcServerTest.java
similarity index 97%
rename from common/src/test/java/org/apache/uniffle/common/GrpcServerTest.java
rename to common/src/test/java/org/apache/uniffle/common/rpc/GrpcServerTest.java
index 67ac320c..ac125749 100644
--- a/common/src/test/java/org/apache/uniffle/common/GrpcServerTest.java
+++ b/common/src/test/java/org/apache/uniffle/common/rpc/GrpcServerTest.java
@@ -15,7 +15,7 @@
* limitations under the License.
*/
-package org.apache.uniffle.common;
+package org.apache.uniffle.common.rpc;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
@@ -27,7 +27,6 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.uniffle.common.metrics.GRPCMetrics;
-import org.apache.uniffle.common.rpc.GrpcServer;
import org.apache.uniffle.common.util.ThreadUtils;
import static
org.apache.uniffle.common.metrics.GRPCMetrics.GRPC_SERVER_EXECUTOR_ACTIVE_THREADS_KEY;