Sergey Shepelev

Results 290 comments of Sergey Shepelev

@Galsor Please, try again with latest code. `pip install https://github.com/eventlet/eventlet/archive/master.zip` It'll be released to PyPI soon.

@Galsor and somehow I missed the straight question about workaround, sorry. ``` # requirements.txt eventlet=0.28.1 ```

Yes, this idea makes sense. Please don't break existing API. I think it wouldn't save considerable time or memory though. Do you have benchmarks? On Fri, Sep 20, 2019, 21:01...

Hey that seems like a somewhat easy bug in kqueue hub. Please try Python3.7-3.8 if you can.

And of course, `EVENTLET_HUB=poll` environment should be a good enough workaround for now. It's unlikely you'd run this under high load on OSX, right?

@pwinston IMHO Python threads are decent solution for under 100 concurrent connections. Maybe you don't need Eventlet after all. Still there is a bug in kqueue hub. Could you provide...

Thanks a lot. So the bug is indeed Python 3.9 specific, this code works on 3.8. Shorter repro script: ``` import eventlet eventlet.connect(('127.0.0.1', 1234)) ``` Flask-SocketIO doc says dev server...

Other kevent platforms like FreeBSD should suffer from this issue, in theory.

Kqueue event mechanism is not available on Windows. On Wed, Aug 11, 2021, 22:40 Luvpreet Singh ***@***.***> wrote: > @temoto Thank you for the quick response. > > Any reason...