Co-authored-by: marbar3778 <marbar3778@yahoo.com> Co-authored-by: Marko <marko@baricevic.me> Co-authored-by: Matt Kocubinski <mkocubinski@gmail.com> Co-authored-by: Likhita Polavarapu <78951027+likhita-809@users.noreply.github.com> Co-authored-by: unknown unknown <unknown@unknown> Co-authored-by: Julien Robert <julien@rbrt.fr>
18 lines
535 B
TOML
18 lines
535 B
TOML
[grpc-server]
|
|
# Enable defines if the gRPC server should be enabled.
|
|
enable = true
|
|
# Address defines the gRPC server address to bind to.
|
|
address = 'localhost:9090'
|
|
# MaxRecvMsgSize defines the max message size in bytes the server can receive.
|
|
# The default value is 10MB.
|
|
max-recv-msg-size = 10485760
|
|
# MaxSendMsgSize defines the max message size in bytes the server can send.
|
|
# The default value is math.MaxInt32.
|
|
max-send-msg-size = 2147483647
|
|
|
|
[mock-server-1]
|
|
# Mock field
|
|
mock_field = 'default'
|
|
# Mock field two
|
|
mock_field_two = 1
|