2009/9/15 Bret Taylor <[email protected]>: > > Doesn't the cleanup() chaining here solve the data corruption issues? > > http://github.com/webpy/webpy/blob/master/web/application.py#L292 > > Sorry if I am misunderstanding your bug report.
It wouldn't cause any data corruption if the application is not using any async features of Tornado. I'm worried about the async case. I've managed to port the Tornado's chatdemo to web.py using async features for Tornado. http://github.com/anandology/tornadohacks/blob/master/tornadohacks It is crucial to have support of SocketThreads to be able to run web.py application on Tornado. Here is the patch that provides that support. http://github.com/anandology/tornadohacks/blob/master/tornadohacks/patch.py Anand --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
