Sergey Shepelev
Sergey Shepelev
Thanks for reproduction script.
The real issue, of course, has nothing to do with monotonic. But it does false help by masking real exception. Real issue is import cycle. ``` Traceback (most recent call...
Meanwhile, dirty workaround is `eventlet.sleep()` before `monkey_patch()`. ```diff import eventlet +eventlet.sleep() eventlet.monkey_patch() eventlet.listen(("localhost", 8000)) ```
Yeah should be fixed here.
@rburkholder > Will the eventless.sleep() change work here? Try and see. > In which file is that change inserted? Where `import eventlet` is executed first time.
Not yet.
@zancas thank you very much. I was wondering how it stopped reproducing on my test machine.
@geofft thank you very much. I'm trying to avoid import inside `monkey_patch` function before release. To everyone: instructions for installing `get_hub` workaround: `pip install https://github.com/eventlet/eventlet/archive/e2884ef9265024d6580eefdd6aa4ec009743a2d7.zip`
Right, thank you twice!
Everyone: Geoff's patch was merged in master, please tell if it works for you. `pip install https://github.com/eventlet/eventlet/archive/b756447bab51046dfc6f1e0e299cc997ab343701.zip`