aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-12-02 15:16:49 -0800
committerChris Lu <chris.lu@gmail.com>2018-12-02 15:16:49 -0800
commit4263805c78cdc906939a52d8aa165f55db36eb29 (patch)
tree4fcc211a76b56692872062150d3182638480fbbc /other/java/client/src
parenta3def2bbd98c12ec158dcdc4df2c6a578f624eb9 (diff)
downloadseaweedfs-4263805c78cdc906939a52d8aa165f55db36eb29.tar.xz
seaweedfs-4263805c78cdc906939a52d8aa165f55db36eb29.zip
resolve java jar dependencies
Diffstat (limited to 'other/java/client/src')
-rw-r--r--other/java/client/src/main/java/seaweedfs/client/FilerGrpcClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/other/java/client/src/main/java/seaweedfs/client/FilerGrpcClient.java b/other/java/client/src/main/java/seaweedfs/client/FilerGrpcClient.java
index 47712bc37..16b7c3249 100644
--- a/other/java/client/src/main/java/seaweedfs/client/FilerGrpcClient.java
+++ b/other/java/client/src/main/java/seaweedfs/client/FilerGrpcClient.java
@@ -16,8 +16,8 @@ public class FilerGrpcClient {
private final SeaweedFilerGrpc.SeaweedFilerFutureStub futureStub;
- public FilerGrpcClient(String host, int port) {
- this(ManagedChannelBuilder.forAddress(host, port).usePlaintext());
+ public FilerGrpcClient(String host, int grpcPort) {
+ this(ManagedChannelBuilder.forAddress(host, grpcPort).usePlaintext());
}
public FilerGrpcClient(ManagedChannelBuilder<?> channelBuilder) {