ui: add an instance flag to hold --insecure bit
authorGregory Szorc <gregory.szorc@gmail.com>
Thu, 05 May 2016 00:33:38 -0700
changeset 29109 e9ce33c642e8
parent 29108 16021d58c5ca
child 29110 b197e2aba703
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.
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