Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hg-windows-ci
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
hg-windows-ci
Commits
d343806d
Commit
d343806d
authored
9 years ago
by
Matt Mackall
Browse files
Options
Downloads
Patches
Plain Diff
http2: mark experimental and developer options
parent
dede675d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mercurial/httpconnection.py
+1
-0
1 addition, 0 deletions
mercurial/httpconnection.py
mercurial/url.py
+1
-0
1 addition, 0 deletions
mercurial/url.py
with
2 additions
and
0 deletions
mercurial/httpconnection.py
+
1
−
0
View file @
d343806d
...
...
@@ -126,6 +126,7 @@
self
.
ui
=
ui
self
.
pwmgr
=
pwmgr
self
.
_connections
=
{}
# developer config: ui.http2debuglevel
loglevel
=
ui
.
config
(
'
ui
'
,
'
http2debuglevel
'
,
default
=
None
)
if
loglevel
and
not
_configuredlogging
:
_configuredlogging
=
True
...
...
This diff is collapsed.
Click to expand it.
mercurial/url.py
+
1
−
0
View file @
d343806d
...
...
@@ -469,6 +469,7 @@
construct an opener suitable for urllib2
authinfo will be added to the password manager
'''
# experimental config: ui.usehttp2
if
ui
.
configbool
(
'
ui
'
,
'
usehttp2
'
,
False
):
handlers
=
[
httpconnectionmod
.
http2handler
(
ui
,
passwordmgr
(
ui
))]
else
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment