Skip to content

Commit

Permalink
Pass options to the grpc.server / upd README
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr Gorbunov committed Jan 27, 2021
1 parent a0395aa commit 98b3daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ GRPCSERVER = {
'servicers': ['dotted.path.to.callback.eg.grpc_hook'], # see `grpc_hook()` below
'interceptors': ['dotted.path.to.interceptor_class',], # optional, interceprots are similar to middleware in Django
'maximum_concurrent_rpcs': None,
'options': [("grpc.max_receive_message_length", 1024 * 1024 * 100)], # optional, additional options passed to grpc.server
'options': [("grpc.max_receive_message_length", 1024 * 1024 * 100)], # optional, list of key-value pairs to configure the channel. The full list of available channel arguments: https://grpc.github.io/grpc/core/group__grpc__arg__keys.html
}
```

Expand Down

0 comments on commit 98b3daa

Please sign in to comment.