mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
increase inbound message size
This commit is contained in:
parent
7bca72deed
commit
64d7d5fe89
|
@ -39,8 +39,10 @@ public class FilerGrpcClient {
|
||||||
public FilerGrpcClient(String host, int grpcPort, SslContext sslContext) {
|
public FilerGrpcClient(String host, int grpcPort, SslContext sslContext) {
|
||||||
|
|
||||||
this(sslContext == null ?
|
this(sslContext == null ?
|
||||||
ManagedChannelBuilder.forAddress(host, grpcPort).usePlaintext() :
|
ManagedChannelBuilder.forAddress(host, grpcPort).usePlaintext()
|
||||||
|
.maxInboundMessageSize(1024 * 1024 * 1024) :
|
||||||
NettyChannelBuilder.forAddress(host, grpcPort)
|
NettyChannelBuilder.forAddress(host, grpcPort)
|
||||||
|
.maxInboundMessageSize(1024 * 1024 * 1024)
|
||||||
.negotiationType(NegotiationType.TLS)
|
.negotiationType(NegotiationType.TLS)
|
||||||
.sslContext(sslContext));
|
.sslContext(sslContext));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue