Jean-Marc Le Roux

Results 232 comments of Jean-Marc Le Roux

@tersmitten any chance this will be addressed?

Maybe a newtype with `#[schema(inline)]` ? ```rust #[derive(ToSchema] struct MyDateTime(#[schema(inline) DateTime); ``` Then use `MyDateTime` instead of `DateTime`.

> Note that the blocker on getting async-executor to properly initialize on multithreaded wasm should be resolved with https://github.com/smol-rs/async-executor/pull/108. It has been merged!

> While it's not impossible to work around these limitations, doing so requires setting up a reverse proxy and additional measures. A simple container image based on NGINX will fix...

As far as I can tell, the problem is the same (but harder to quantify) without the `TracingLogger`.

Using `curl -vv`, the "We are completely uploaded and fine" line appears after an unexpectedly long amount of time. And then the endpoint is entered. So maybe it's something on...

> Using curl -vv, the "We are completely uploaded and fine" line appears after an unexpectedly long amount of time. And then the endpoint is entered. Using HTTP 1.1 the...

Based on [this CloudFlare blog post](https://blog.cloudflare.com/delivering-http-2-upload-speed-improvements/) this issue might be indeed specific to HTTP/2. And it might boil down to buffer size. Alas, AFAIK, there is no way to configure...

> Alas, AFAIK, there is no way to configure the multipart buffer size in actix-multipart. I'll see if I can open a PR. I think the payload buffer size is...