diff options
author | 2020-09-01 03:50:51 +0000 | |
---|---|---|
committer | 2020-09-01 03:50:51 +0000 | |
commit | 44b22b049eb949b3102ef2a207c89a60deceff04 (patch) | |
tree | bf1ec41330c0a05f4572a8b0907eca4182f4e295 /grpc/grpc-client | |
parent | 057e9a7c16d117606303312d779c54d9c4dad7aa (diff) | |
parent | b32486bd6b280d1f7349ccaa6f8bec92ad981ab0 (diff) |
Merge "Upgraded grpc-netty for vulnerabilities and removed boilerplate code"
Diffstat (limited to 'grpc/grpc-client')
-rw-r--r-- | grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java b/grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java index d50f6143..13d2f97e 100644 --- a/grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java +++ b/grpc/grpc-client/src/main/java/org/open/infc/grpc/client/OpenInterfaceGrpcClient.java @@ -62,7 +62,7 @@ public class OpenInterfaceGrpcClient { this(ManagedChannelBuilder.forAddress(host, port) // Channels are secure by default (via SSL/TLS). For the example we disable TLS to avoid // needing certificates. - .usePlaintext(true) + .usePlaintext() .build()); } |