queue debugging

This commit is contained in:
j 2019-02-01 13:19:19 +05:30
commit dd48312aff
2 changed files with 3 additions and 1 deletions

View file

@ -317,7 +317,6 @@ class Handler(http.server.SimpleHTTPRequestHandler):
self.send_header('Content-Length', str(content_length))
self.end_headers()
self.wfile.write(content)
logger.debug('%s bytes response', content_length)
def chunk_size(self, content_length):
return min(16*1024, content_length)