Mercurial > public > mercurial-scm > hg-stable
diff mercurial/ui.py @ 29109:e9ce33c642e8
ui: add an instance flag to hold --insecure bit
Currently, when --insecure is used we set web.cacerts=! and
socket validation takes this value into account. web.cacerts=!
is not documented AFAICT and is purely an internal implementation
detail.
Let's be more explicit about what is going on by introducing a
dedicated variable outside of the config values to track that
--insecure is used.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Thu, 05 May 2016 00:33:38 -0700 |
parents | 33a10e212b80 |
children | d269e7db2f55 |
line wrap: on
line diff
--- a/mercurial/ui.py Thu May 05 00:32:43 2016 -0700 +++ b/mercurial/ui.py Thu May 05 00:33:38 2016 -0700 @@ -107,6 +107,8 @@ self._trustusers = set() self._trustgroups = set() self.callhooks = True + # Insecure server connections requested. + self.insecureconnections = False if src: self.fout = src.fout @@ -120,6 +122,7 @@ self._trustgroups = src._trustgroups.copy() self.environ = src.environ self.callhooks = src.callhooks + self.insecureconnections = src.insecureconnections self.fixconfig() else: self.fout = sys.stdout