Re: parallel (concurrent) eventlet

2016-01-18 Thread David Gabriel
Dears, Let me add one more detail: When I add these two lines to check whether my modules are monkey_patched or not I get *False* as a result. I think it is strange to get this result since I patched my modules at the beginning using: eventlet.monkey_patch() as detailed here

parallel (concurrent) eventlet

2016-01-18 Thread David Gabriel
Dears, I have an issue when I use eventlet Api to create parallel threads. In fact, when I run the below code, only the program dealing with the synchronozation with ldap data base is working and is continuously blocking the others to run. But, when I use the 'thread' Api the program is working

Re: parallel (concurrent) eventlet

2016-01-18 Thread Ian Kelly
On Mon, Jan 18, 2016 at 8:03 AM, David Gabriel wrote: > Dears, > > Let me add one more detail: When I add these two lines to check whether my > modules are monkey_patched or not I get *False* as a result. > I think it is strange to get this result since I patched my modules