D2020: hgweb: move call to protocol handler outside of try..except
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Wed Feb 7 22:41:28 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGe69e65b2b4a9: hgweb: move call to protocol handler outside of try..except (authored by indygreg, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2020?vs=5174&id=5310
REVISION DETAIL
https://phab.mercurial-scm.org/D2020
AFFECTED FILES
mercurial/hgweb/hgweb_mod.py
CHANGE DETAILS
diff --git a/mercurial/hgweb/hgweb_mod.py b/mercurial/hgweb/hgweb_mod.py
--- a/mercurial/hgweb/hgweb_mod.py
+++ b/mercurial/hgweb/hgweb_mod.py
@@ -368,7 +368,6 @@
raise ErrorResponse(HTTP_NOT_FOUND)
if cmd in perms:
self.check_perm(rctx, req, perms[cmd])
- return protohandler['dispatch']()
except ErrorResponse as inst:
# A client that sends unbundle without 100-continue will
# break if we respond early.
@@ -383,6 +382,8 @@
body='0\n%s\n' % inst)
return ''
+ return protohandler['dispatch']()
+
# translate user-visible url structure to internal structure
args = query.split('/', 2)
To: indygreg, #hg-reviewers, durin42
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list