Adven27 / grpc-wiremock

gRPC Mock Server
MIT License
93 stars 40 forks source link

Increase maxHeaderListSize in proto. #2

Closed sp1rs closed 3 years ago

sp1rs commented 3 years ago

Is there a way to increase the maxHeaderListSize in proto server?

Adven27 commented 3 years ago

I've added support of the following properties to the grpc server: GRPC_SERVER_MAXHEADERLISTSIZE GRPC_SERVER_MAXMESSAGESIZE GRPC_SERVER_MAXINBOUNDMETADATASIZE GRPC_SERVER_MAXINBOUNDMESSAGESIZE

(The first two are deprecated in favor of the last two)

Could be used like this:

docker run -e GRPC_SERVER_MAXHEADERLISTSIZE=1000 adven27/grpc-wiremock

sp1rs commented 3 years ago

Thanks a lot. This solution worked.