D3346: httppeer: no matter what Python 3 might think, http headers are bytes
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Mon Apr 16 23:21:41 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG6cb7e3b91883: httppeer: no matter what Python 3 might think, http headers are bytes (authored by durin42, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D3346?vs=8223&id=8340
REVISION DETAIL
https://phab.mercurial-scm.org/D3346
AFFECTED FILES
mercurial/httppeer.py
CHANGE DETAILS
diff --git a/mercurial/httppeer.py b/mercurial/httppeer.py
--- a/mercurial/httppeer.py
+++ b/mercurial/httppeer.py
@@ -278,6 +278,8 @@
hgargssize = None
for header, value in sorted(req.header_items()):
+ header = pycompat.bytesurl(header)
+ value = pycompat.bytesurl(value)
if header.startswith('X-hgarg-'):
if hgargssize is None:
hgargssize = 0
To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list