Skip to content

Commit c969114

Browse files
committed
GRPC: removed limit to max message size
1 parent c94368e commit c969114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-core/src/cc/arduino/cli/ArduinoCore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ public ArduinoCore() throws IOException {
8080
ManagedChannel channel = ManagedChannelBuilder //
8181
.forAddress("127.0.0.1", 50051) //
8282
.usePlaintext() //
83+
.maxInboundMessageSize(Integer.MAX_VALUE) //
8384
.build();
84-
8585
blocking = ArduinoCoreGrpc.newBlockingStub(channel);
8686
// async = ArduinoCoreGrpc.newStub(channel);
8787
}

0 commit comments

Comments
 (0)