-
| 
         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.
Replies: 3 comments 3 replies
-
| 
         The only way I have found to work around that is to implement your own   | 
  
Beta Was this translation helpful? Give feedback.
-
| 
         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.
-
| 
         thank you  | 
  
Beta Was this translation helpful? Give feedback.
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.