-
Hello ! I've seen that it's set to : /// Max request size in bytes
const REQUEST_SIZE_MAXIMUM: u64 = 1024 * 1024;
/// Max response size in bytes
const RESPONSE_SIZE_MAXIMUM: u64 = 10 * 1024 * 1024; |
Beta Was this translation helpful? Give feedback.
Answered by
romac
Dec 3, 2024
Replies: 2 comments 1 reply
-
The only way I have found to work around that is to implement your own |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
cyrus937
-
I do have a branch with the change that I meant to make into a PR but this is the change you could make. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The only way I have found to work around that is to implement your own
Codec
, using either the CBOR or JSON codecs as reference.