# HG changeset patch # User Gregory Szorc # Date 1462433618 25200 # Node ID e9ce33c642e849b93a793d2644a7585236183ff3 # Parent 16021d58c5ca44d6fa64f1a8e15edf05181aad17 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. diff -r 16021d58c5ca -r e9ce33c642e8 mercurial/ui.py --- 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