We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e6bc37 commit 9f8208cCopy full SHA for 9f8208c
grpc-client-spring-boot-starter/src/main/java/net/devh/boot/grpc/client/config/GrpcChannelProperties.java
@@ -501,6 +501,9 @@ public void copyDefaultsFrom(final GrpcChannelProperties config) {
501
if (this.maxInboundMessageSize == null) {
502
this.maxInboundMessageSize = config.maxInboundMessageSize;
503
}
504
+ if (this.maxInboundMetadataSize == null) {
505
+ this.maxInboundMetadataSize = config.maxInboundMetadataSize;
506
+ }
507
if (this.negotiationType == null) {
508
this.negotiationType = config.negotiationType;
509
0 commit comments