The messages_max_size_in_bytes is a config item in CrossSiloMessageConfig.
The original design is that when users customize their proxy actor and config, this field should be converted to the corresponding field. E.g. when using grpc proxy, this field should be equivalent to setting "grpc.max_send_message_length" and "grpc.max_receive_message_length" in GrpcCrossSiloMessageConfig.grpc_channel_options. However, this field get missed when converting to GrpcCrossSiloMessageConfig.
The
messages_max_size_in_bytes
is a config item inCrossSiloMessageConfig
. The original design is that when users customize their proxy actor and config, this field should be converted to the corresponding field. E.g. when using grpc proxy, this field should be equivalent to setting "grpc.max_send_message_length" and "grpc.max_receive_message_length" inGrpcCrossSiloMessageConfig.grpc_channel_options
. However, this field get missed when converting toGrpcCrossSiloMessageConfig
.This PR fix this bug and should solving #181 and this issue: https://github.com/secretflow/secretflow/issues/952