2011/8/4 moonspirit <moonspi...@gmail.com>:
I was wondering how to set timeout for AsyncHTTPClient nowadays?I wrote a testing web server for network latency such like this:class SlowHandler(victimweb.RequestHandler):def post(self):sleep(5)self.write("done");