File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -985,6 +985,11 @@ pub static MAX_BACKEND_RPC_REQUEST_SIZE: LazyLock<usize> =
985
985
pub static MAX_BACKEND_RPC_RESPONSE_SIZE : LazyLock < usize > =
986
986
LazyLock :: new ( || env_config ( "MAX_BACKEND_RPC_RESPONSE_SIZE" , ( 1 << 23 ) + 2000 ) ) ; // 8 MiB + buffer
987
987
988
+ /// The maximum size of byte chunks used when transmitting HTTP request/response
989
+ /// bodies as part of HTTP Actions.
990
+ pub static MAX_BACKEND_RPC_HTTP_CHUNK_SIZE : LazyLock < usize > =
991
+ LazyLock :: new ( || env_config ( "MAX_BACKEND_RPC_RESPONSE_SIZE" , 1 << 23 ) ) ; // 8 MiB
992
+
988
993
/// The maximum size for requests to the backend public API. Must be at least 8
989
994
/// MiB for function arguments.
990
995
pub static MAX_BACKEND_PUBLIC_API_REQUEST_SIZE : LazyLock < usize > =
You can’t perform that action at this time.
0 commit comments