I am using gevent and i am monkey patching all.
It seem like the monkey patching causes the threading to work serially.
My code:
import threading
from gevent import monkey; monkey.patch_all()
class ExampleThread(threading.Thread):
def run(self):
do_suff() # takes a few minutes to finish
print 'finished working'
if __name__ == '__main__':
worker = ExampleThread()
worker.start()
print 'this should be printed before the worker finished'
So the thread is not working as expected.
But if i remove the monkey.patch_all() it is working fine.
The problem is that i need the monkey.patch_all() for using the gevent (now shown in the code above)
MY SOLUTION:
i changed the
monkey.patch_all()
to
monkey.patch_all(thread=False)
so i am not patching the thread.