I have this part of code:
como_url = "".join(['http://', options.como_address, ':', options.como_port,
'/ztc_config?netid=0&opcode_group=0&opcode=0&start=-20s&end=-1s'])http_client = AsyncHTTPClient()request = tornado.httpclient.HTTPRequest(url=como_url, connect_timeout=20.0, request_timeout=20.0)response = yield tornado.gen.Task(http_client.fetch, request)
I don't know why seems the timeouts doesn't work!
Any idea? Thanks.
--