Jonas Haag

Results 799 comments of Jonas Haag

I tried to set write event priority to max while setting read event priority to min, and it still shows the same behavior.

No the content length is missing in the response headers. Your WSGI application has to set it.

> the 'Transfer-Encoding': 'chunked' header is gone as you said, but for some reason it still doesn't work for me as expected With the example application you've provided, or with...

Unfortunately I can't reproduce this with the reproducer app. ```py import random from concurrent.futures import ThreadPoolExecutor from datetime import datetime import requests for _ in range(10): durations = [] def...

I was able to reproduce in a Linux Docker container. So maybe it's a Linux thing. I can spend some time debugging this soon.

Reproducer: ```py from concurrent.futures import ThreadPoolExecutor def foobar(): import Vision x = Vision.VNRecognizedTextObservation with ThreadPoolExecutor() as pool: for _ in range(2): pool.submit(foobar) ```

Thanks for the prompt fix!

Maybe an easier workaround would be to improve the error message. Maybe you can globally hardcode something like ``` if error message contains "Too many open files" or errno =...

I'm not getting this regularly even with small environments