mercurial/hgweb/hgweb_mod.py
changeset 13571 84bd3fd63afc
parent 13445 61a898576888
child 13741 b51bf961b3cb
--- a/mercurial/hgweb/hgweb_mod.py	Sat Feb 06 04:27:28 2010 -0600
+++ b/mercurial/hgweb/hgweb_mod.py	Fri Jan 07 15:19:21 2011 -0600
@@ -121,7 +121,11 @@
                     self.check_perm(req, perms[cmd])
                 return protocol.call(self.repo, req, cmd)
             except ErrorResponse, inst:
-                if cmd == 'unbundle':
+                # A client that sends unbundle without 100-continue will
+                # break if we respond early.
+                if (cmd == 'unbundle' and
+                    req.env.get('HTTP_EXPECT',
+                                '').lower() != '100-continue'):
                     req.drain()
                 req.respond(inst, protocol.HGTYPE)
                 return '0\n%s\n' % inst.message