Mercurial > public > mercurial-scm > hg
comparison mercurial/wireproto.py @ 28530:fd2acc5046f6
http: support sending hgargs via POST body instead of in GET or headers
narrowhg (for its narrow spec) and remotefilelog (for its large batch
requests) would like to be able to make requests with argument sets so
absurdly large that they blow out total request size limit on some
http servers. As a workaround, support stuffing args at the start
of the POST body.
We will probably want to leave this behavior off by default in servers
forever, because it makes the old "POSTs are only for writes"
assumption wrong, which might break some of the simpler authentication
configurations.
author | Augie Fackler <augie@google.com> |
---|---|
date | Fri, 11 Mar 2016 11:37:00 -0500 |
parents | 48fd02dac1d4 |
children | ae53ecc47414 |
comparison
equal
deleted
inserted
replaced
28529:045cdf47851a | 28530:fd2acc5046f6 |
---|---|
686 capsblob = bundle2.encodecaps(bundle2.getrepocaps(repo)) | 686 capsblob = bundle2.encodecaps(bundle2.getrepocaps(repo)) |
687 caps.append('bundle2=' + urllib.quote(capsblob)) | 687 caps.append('bundle2=' + urllib.quote(capsblob)) |
688 caps.append('unbundle=%s' % ','.join(changegroupmod.bundlepriority)) | 688 caps.append('unbundle=%s' % ','.join(changegroupmod.bundlepriority)) |
689 caps.append( | 689 caps.append( |
690 'httpheader=%d' % repo.ui.configint('server', 'maxhttpheaderlen', 1024)) | 690 'httpheader=%d' % repo.ui.configint('server', 'maxhttpheaderlen', 1024)) |
691 if repo.ui.configbool('experimental', 'httppostargs', False): | |
692 caps.append('httppostargs') | |
691 return caps | 693 return caps |
692 | 694 |
693 # If you are writing an extension and consider wrapping this function. Wrap | 695 # If you are writing an extension and consider wrapping this function. Wrap |
694 # `_capabilities` instead. | 696 # `_capabilities` instead. |
695 @wireprotocommand('capabilities') | 697 @wireprotocommand('capabilities') |