That's most likely an issue with your browser
This:
1- edit view_1 as such:
def view1(request):
print 'Start view1 - %s' % id(request)
time.sleep(10)
print 'End view1 - %s' % id(request)
return Response('Ok')
2- instead of a browser, two terminal windows that each request:
curl -O http://0.0.0.0:6543/view1
you should see something like :
Start view1 - 4328272208
Start view1 - 4328272848
End view1 - 4328272208
End view1 - 4328272848
--
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pylons-discuss.
For more options, visit https://groups.google.com/groups/opt_out.