We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6094cad commit cf9611cCopy full SHA for cf9611c
crossplane/function/runtime.py
@@ -84,7 +84,9 @@ def serve(
84
address: The address at which to listen for requests.
85
creds: The credentials used to authenticate requests.
86
insecure: Serve insecurely, without credentials or encryption.
87
- options: Additional gRPC server options.
+ options: Additional gRPC server options. Eg. set max receive message
88
+ size to 5Mb (default is 4Mb):
89
+ [("grpc.max_receive_message_length", 1024 * 1024 * 5)]
90
91
Raises:
92
ValueError if creds is None and insecure is False.
0 commit comments