serve: send response headers even if response has no body
authorMads Kiilerich <mads@kiilerich.com>
Tue, 15 Jan 2013 01:05:12 +0100
changeset 18349 c007e5c54b16
parent 18348 764a758780b6
child 18350 c0d63e1884a3
serve: send response headers even if response has no body The headers would usually be sent anyway because the app did a number of writes of empty strings.
mercurial/hgweb/server.py
--- a/mercurial/hgweb/server.py	Tue Jan 15 01:05:12 2013 +0100
+++ b/mercurial/hgweb/server.py	Tue Jan 15 01:05:12 2013 +0100
@@ -136,6 +136,8 @@
         self.length = None
         for chunk in self.server.application(env, self._start_response):
             self._write(chunk)
+        if not self.sent_headers:
+            self.send_headers()
 
     def send_headers(self):
         if not self.saved_status: