1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-13 10:29:35 +01:00

GRPC: removed limit to max message size

This commit is contained in:
Cristian Maglie 2019-11-28 16:57:08 +01:00
parent 310a5df5e1
commit 84b9518776

View File

@ -80,8 +80,8 @@ public class ArduinoCore {
ManagedChannel channel = ManagedChannelBuilder //
.forAddress("127.0.0.1", 50051) //
.usePlaintext() //
.maxInboundMessageSize(Integer.MAX_VALUE) //
.build();
blocking = ArduinoCoreGrpc.newBlockingStub(channel);
// async = ArduinoCoreGrpc.newStub(channel);
}