Skip to content

Allow larger payload bodies than 10kB #40

@leio

Description

@leio

Some alternative servers, such as soketi, allow configuring the server to accept payloads larger than 10kB, however the code here will still reject it with

if body.len() > 10240 {
return Err("Data must be smaller than 10kb".to_string());
}
and potentially other places.
Please consider removing that restriction, make it configurable or some other means to make use of larger payloads when the server supports it.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions