Mirek Klimos
Results
2
comments of
Mirek Klimos
After writing this, I figured we can simulate proposal 1 by ``` .max_lifetime(None) .after_release(|_conn, meta| Box::pin(async move { Ok(meta.age.as_secs() < 30 * 60) })) ``` We don't get the benefit...
Thanks for the reply - I'll try the workaround as you suggest, updating the OpenAPI rust struct before generation is an interesting idea. Minimal openapi spec here: ``` openapi: '3.0.1'...