Nicolas Schneider

Results 65 comments of Nicolas Schneider

`await` can be used on `Future` as well as on `T` directly, i.e. it is perfectly fine to `await` a synchronous value (it will be wrapped into a Future under...

I probably can't set up such an easy to reproduce setup, since I run this distributed across multiple workers + target VMs in Google Cloud Platform (without a load balancer,...

This is most likely caused by nginx's default of `keepalive_time 1h`, which closes down a connection after 1 hour during the next request processing. This is also why our first...

Also, this will be backend dependent. I don't think you can easily re-use a precompiled header across multiple VS projects in a solution, but I'll gladly review a PR implementing...

Sorry for my late response. Is there a similar flag to control the redoc API? I found out that the order of the endpoints is actually how they are in...

The problem is that we don't want to sort alphabetically, but semantically. E.g. a `start` endpoint should come before a `finish` endpoint, but through alphabetical order it would be *...

Could be the same as #1107. Seems like we would need a different connector for each connection, although I'm not sure why it works in the first place then (and...

Thanks for the fast response! Honestly we just missed the `create_async_connector` helper function, since we switched from the sync version to the async version and did not see any problems...

I understand that this would be the optimal setup, but I'm afraid this just does not work with `flask[async]` (although I wonder how it even works initially before the app...