I have this simple Python programm:

from eventlet import wsgi
import eventlet
from eventlet.green import time

def hello_world(env, start_response):
    print "got request"
    time.sleep(10)
    start_response('200 OK', [('Content-Type', 'text/plain')])
    return ['Hello, World!\n']

wsgi.server(eventlet.listen(('', 8090)), hello_world)

So when i run it, and open http://localhost:8090/ on my browser multiple times, got request is only printed after the first request was already processed (after 10 seconds). It seems like eventlet.wsgi.server is processing the requests synchronously. But I am using the "green" sleep. sow how can this happen?

Thank you!

link|improve this question

64% accept rate
i took a look at wsgi.py every request is processed on a seperate (green) thread pool.spawn_n(serv.process_request, client_socket) and the pool maxium size is 1024... – nomoral Dec 14 '11 at 18:13
are you sure you have unbuffered output ? – ionelmc Dec 15 '11 at 12:59
do yo know how i can check this? – nomoral Dec 15 '11 at 19:15
You can run python in unbuffered mode (python -u) and there's also the PYTHONUNBUFFERED=x enviroment var you could set. – ionelmc Dec 17 '11 at 13:06
its funny, but my main application is working well, but this simple test not, anyway... thank you for the help! – nomoral Dec 22 '11 at 3:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.